import { Linter } from 'eslint'; interface FactoryOptions { ignores?: string[]; } declare function factory({ ignores }?: FactoryOptions): Linter.Config[]; export = factory; export type { FactoryOptions };