declare module "*.svg" { export const getContent: () => Promise; export const getBuffer: () => Promise; export const getBase64: () => Promise; export const url: string; } declare module "*.png" { export const getContent: () => Promise; export const getBuffer: () => Promise; export const getBase64: () => Promise; export const url: string; } declare module "*.jpg" { export const getContent: () => Promise; export const getBuffer: () => Promise; export const getBase64: () => Promise; export const url: string; } declare module "*.jpeg" { export const getContent: () => Promise; export const getBuffer: () => Promise; export const getBase64: () => Promise; export const url: string; } declare module "*.webp" { export const getContent: () => Promise; export const getBuffer: () => Promise; export const getBase64: () => Promise; export const url: string; }