import { type TypedFlatConfigItem } from "@antfu/eslint-config"; export interface OptionsWgw { /** * Enable TypeScript support */ isTypescript?: boolean; /** * Enable editor specific rules */ isInEditor?: boolean; /** * User overrides */ overrides?: TypedFlatConfigItem["rules"]; /** * Enable Astro patches */ isAstro?: boolean; } export declare function wgw(options?: OptionsWgw): Promise;