import * as _nuxt_schema from '@nuxt/schema';

type RuleValue = string | boolean | Function | (string | boolean | Function)[];
type Rule = {
    [key: string]: RuleValue;
};

type ModuleOptions = {
    configPath: string;
    rules: Rule | Rule[];
};
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;

export { ModuleOptions, _default as default };
