export interface GenerateAssetsOptions { targetPath: string; userImagesPath?: string; } /** * Generates all asset files for the widget extension. * * This creates: * - Assets.xcassets/ directory structure * - Copies user images to the asset catalog */ export declare function generateAssets(options: GenerateAssetsOptions): void;