import type { Linter } from 'eslint'; import type { OptionsOverrides } from '../types'; /** * Stylistic options for YAML config */ export interface YamlStylisticOptions { /** * Indentation style * @default 2 */ indent?: number | 'tab'; /** * Quote style * @default 'single' */ quotes?: 'single' | 'double'; } /** * YAML configuration options */ export interface YamlOptions extends OptionsOverrides { /** * Enable stylistic rules * @default true */ stylistic?: boolean | YamlStylisticOptions; } /** * YAML configuration */ export declare function yaml(options?: YamlOptions): Linter.Config[]; //# sourceMappingURL=yaml.d.ts.map