import type { CommandModule } from 'yargs';
type Args = {
  paths?: string[];
  command?: string;
  indexes?: boolean;
  types?: boolean;
  perf?: boolean;
  notableMs?: number;
};
declare const runValidate: CommandModule<{}, Args>;
export default runValidate;