import type { AstroConfig } from 'astro'; import type { Plugin } from 'vite'; import type { IntegrationOptions } from './index.js'; import type { InputFormat } from './loaders/index.js'; export interface ImageMetadata { src: string; width: number; height: number; format: InputFormat; } export declare function createPlugin(config: AstroConfig, options: Required): Plugin;