interface Options {
    template: string;
    /**
     * @default 'latest'
     */
    version?: string;
    /**
     * The npm Registry
     */
    registry?: string;
    /**
     * @default process.cwd()
     */
    cwd?: string;
    /**
     * @default false
     */
    force?: boolean;
}
export declare function init(options: Options): Promise<void>;
export {};
