import { type BrandId } from "@ohmyperf/design-tokens"; export interface InteractiveAnswers { readonly url: string; readonly style: BrandId; readonly mode: "real" | "ci-stable"; readonly runs: number; readonly format: string; readonly browserPath: string | undefined; readonly output: string; readonly plugins: string; readonly collectTrace: boolean; } export declare function promptInteractive(initial: { url?: string; style?: BrandId; mode?: string; runs?: number; format?: string; browserPath?: string; output?: string; }): Promise; export declare function isInteractiveContext(): boolean; //# sourceMappingURL=run-interactive.d.ts.map