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