export declare const SRC_OUT_FUNCTIONS: string[];
/**
 * Per function configuration. And override
 * ext: the output files extension mapping set for the function
 *
 * Note: †his is one type of mapping. Precedency matter check it in the doc.
 */
export declare const MIX_DEFAULT_FUNCTIONS_SETTINGS: {
    js: {
        outputMapping: {
            ext: string;
        };
    };
    ts: {
        outputMapping: {
            ext: string;
        };
    };
    sass: {
        outputMapping: {
            ext: string;
        };
    };
    css: {
        outputMapping: {
            ext: string;
        };
    };
    postCss: {
        outputMapping: {
            ext: string;
        };
    };
    less: {
        outputMapping: {
            ext: string;
        };
    };
    stylus: {
        outputMapping: {
            ext: string;
        };
    };
};
export type TMixFuncSettings = typeof MIX_DEFAULT_FUNCTIONS_SETTINGS;
