type Component = { name: string; type: string; animated: boolean; sizeBefore: number; sizeAfter: number; }; /** * Generates the main index file */ export declare function generateIndexFile(components: Component[]): string; export {};