type QueryType = RegExp | Function | null;
interface TransFormFunctionQuery {
    include?: QueryType;
    exclude?: QueryType;
}
type TransFormFunction<T> = (query?: TransFormFunctionQuery) => T;

declare const vitePluginSettingCssModules: TransFormFunction<object>;

export { vitePluginSettingCssModules as default };
