export interface CliOptions { update?: boolean; remove?: boolean; headless?: boolean; port?: number; statics?: string; folder?: string; file?: string; baseURL?: string; threshold?: number; } export declare const program: { options: CliOptions; isCI: boolean; };