interface ConfigParams {
    flow: boolean;
    typescript: boolean;
    parseProps: boolean;
    env: {
        dev: boolean;
        prod: boolean;
        test: boolean;
    };
}
export declare const config: (opts: ConfigParams) => {
    presets: any[];
    plugins: any[];
};
export {};
