import { UIProvider } from '../ui/UIProvider'; import { File } from '../types/file'; export declare const findCompiles: (directory?: string) => Promise; /** * Find all physical contract files (.fc, .tact, .tolk) in the contracts directory */ export declare const findAllContractFiles: () => Promise; export declare const findContracts: () => Promise; export declare const findScripts: () => Promise; export declare function selectOption(options: { name: string; value: string; }[], opts: { ui: UIProvider; msg: string; hint?: string; }): Promise<{ name: string; value: string; }>; export declare function selectFile(files: File[], opts: { ui: UIProvider; hint?: string; import?: boolean; }): Promise<{ module: any; name: string; path: string; }>;