import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class ConfigureData extends SfCommand<any> {
    static title: string;
    static description: string;
    static examples: string[];
    static flags: any;
    static requiresProject: boolean;
    exportConfig: any;
    filesExportPath: any;
    run(): Promise<AnyJson>;
    private createConfigFiles;
    private selectTemplate;
    private buildExportJsonInfo;
    private buildExportJsonInfoFromTemplate;
}
