export interface GitHubTemplateOptions {
    name: string;
    title: string;
    description: string;
    owner: string;
    type?: string;
    tags?: string[];
}
export declare function getGitHubRepositoryTemplate(options: GitHubTemplateOptions): string;
export declare function saveTemplateToFile(template: string, filePath: string): void;
export declare function getDefaultTemplate(): string;
