import { AccountArgs, CommonArgs, ConfigArgs, YargsCommandModule } from '../../types/Yargs.js'; export type LintArgs = CommonArgs & ConfigArgs & AccountArgs & { path: string; }; declare const lintCommand: YargsCommandModule; export default lintCommand;