export interface InitOptions { readonly cliName?: string; readonly install?: boolean; readonly packageManager?: string; readonly quiet?: boolean; readonly typescript?: boolean; } export type InitCallback = (status: number) => void; export declare const init: (appName: string, packageName: string, cmd: InitOptions, callback?: InitCallback) => Promise;