import { t } from '../../common'; import { Settings } from '../../settings'; declare type IInitFlags = { force?: boolean; prod?: boolean; scripts?: boolean; files?: boolean; html?: boolean; deps?: boolean; }; export declare function prepare(args: { settings: Settings; prod: boolean; }): Promise; export declare function init(args: IInitFlags & { settings: Settings; reset?: boolean; template?: t.InitTemplate; }): Promise; export declare function copyPackage(args: { settings: Settings; prod: boolean; }): Promise; export {};