declare module "astro-imagetools/api" { export function renderImg( options: any ): Promise<{ link: string; style: string; img: string } | null>; export function importImage(src: string): Promise; }