import type { WidgetFiles } from '../types'; /** * Scans the widget extension target directory and returns categorized file lists. * * This function only reads the directory structure - it does NOT copy or create files. * File generation should be done before this is called. * * @param targetPath - Path to the widget extension target directory * @param targetName - Name of the target (for entitlements file) * @returns Categorized lists of files for Xcode project configuration */ export declare function getWidgetFiles(targetPath: string, targetName: string): WidgetFiles;