import { PrivateRunLocation, RunLocation } from '../services/abstract-check-runner'; import type { Region } from '..'; import { ReporterType } from '../reporters/reporter'; export declare function prepareRunLocation(configOptions: { runLocation?: keyof Region | undefined; privateRunLocation?: string | undefined; } | undefined, cliFlags: { runLocation?: keyof Region | undefined; privateRunLocation?: string | undefined; } | undefined, api: any, accountId: string): Promise; export declare function preparePrivateRunLocation(privateLocationSlugName: string, api: any, accountId: string): Promise; export declare function prepareReportersTypes(reporterFlag: ReporterType[] | undefined, cliReporters?: ReporterType[]): ReporterType[]; export declare function splitChecklyAndPlaywrightFlags(args: string[]): { checklyFlags: string[]; playwrightFlags: string[]; };