interface Options {
    name?: string;
    version?: string;
    src?: string;
    dest?: string;
    components?: string;
    pluginType?: 'component' | 'hook' | 'directive';
    plugins?: string[];
    allPackages?: any[];
    precss?: 'less' | 'scss' | '';
}
declare const options: Options;
export default options;
export declare function fetchTemplateFiles(): string[];
