export interface InitOptions {
    readonly scope?: string | undefined;
    readonly name?: string | undefined;
    readonly githubOwner?: string | undefined;
    readonly githubProject?: string | undefined;
    readonly webapp?: boolean | undefined;
    readonly authorName?: string | undefined;
    readonly authorEmail?: string | undefined;
    readonly license?: string | undefined;
    readonly copyrightHolder?: string | undefined;
}
export declare function cliInit(path: string, options: InitOptions): void;
