import type { Input } from './types.js'; import * as Git from '@skuba-lib/api/git'; export declare const AUTOFIX_IGNORE_FILES_BASE: Git.ChangedFile[]; export declare const AUTOFIX_IGNORE_FILES_NPMRC: Git.ChangedFile[]; interface AutofixParameters { debug: Input['debug']; eslint: boolean; prettier: boolean; internal: boolean; eslintConfigFile?: string; } export declare const autofix: (params: AutofixParameters) => Promise; export {};