import type { Linter } from 'eslint'; /** * Perfectionist (sorting) configuration options */ export interface PerfectionistOptions { /** * Sorting order * @default 'asc' */ order?: 'asc' | 'desc'; /** * Override rules */ overrides?: Linter.RulesRecord; /** * Sorting type * @default 'natural' */ type?: 'natural' | 'line-length' | 'alphabetical'; } /** * Perfectionist (sorting) configuration * * @see https://github.com/azat-io/eslint-plugin-perfectionist */ export declare function perfectionist(options?: PerfectionistOptions): Linter.Config; //# sourceMappingURL=perfectionist.d.ts.map