/**
 * Translate parsed CLI options, choosing the appropriate format based on
 * whether flat config mode is being used.
 */
declare function translateOptions(options: any, useFlatConfig?: boolean): {
    allowInlineConfig: any;
    cache: any;
    cacheLocation: any;
    cacheStrategy: any;
    errorOnUnmatchedPattern: any;
    fix: any;
    fixTypes: any;
    ignore: any;
    overrideConfig: any;
    overrideConfigFile: any;
};

export { translateOptions };
