export interface KpyOptions { baseDir: string; inputPatterns?: string[]; outputDir: string; silent?: boolean; verbose?: boolean; noOverwrite?: boolean; dotfiles?: boolean; flat?: boolean; dry?: boolean; move?: boolean; } export declare function kpyCommand(): Promise; export declare function kpy(opt: KpyOptions): Promise;