import { Command } from 'commander'; import { OutputFormat } from '../../utils/format'; export interface AuditOptions { url: string; formFactor?: string; categories?: string; showAudits?: boolean; chromePath?: string; output?: OutputFormat; verbose?: boolean; } export declare function auditSubCommand(): Command;