export interface InitOptions { /** * The path to the app to be initialized */ dir?: string; /** * Whether to use sensible defaults or prompt the user visually */ interactive?: boolean; /** * Whether to copy Travis and AppVeyor CI files */ copyCIFiles?: boolean; /** * Whether to overwrite an existing directory */ force?: boolean; /** * The custom template to use. If left empty, the default template is used */ template?: string; } declare const _default: ({ dir, interactive, copyCIFiles, force, template }: InitOptions) => Promise; export default _default;