declare module 'lint-staged' { interface LintStagedOptions { config?: Record; allowEmpty?: boolean; } type LintStagedFn = (options: LintStagedOptions) => Promise; interface LintStaged extends LintStagedFn { default: LintStagedFn; } const lintStaged: LintStaged; export default lintStaged; }