import type { Linter } from "eslint"; export type BuildConfigOptions = { node?: boolean; packageJson?: boolean; eslintPlugin?: boolean; vue3?: boolean | { withTs?: boolean; }; vue2?: boolean | { withTs?: boolean; }; svelte?: boolean | { withTs?: boolean; }; astro?: boolean | { withTs?: boolean; }; ts?: boolean; json?: boolean; yaml?: boolean; toml?: boolean; md?: boolean; prettier?: boolean; }; /** * Build config */ export declare function buildConfig(options: BuildConfigOptions): Linter.FlatConfig[];