1// Generated by `bun init` 2 3declare module "*.svg" { 4 /** 5 * A path to the SVG file 6 */ 7 const path: `${string}.svg`; 8 export = path; 9} 10 11declare module "*.module.css" { 12 /** 13 * A record of class names to their corresponding CSS module classes 14 */ 15 const classes: { readonly [key: string]: string }; 16 export = classes; 17}