import type { Command } from 'commander';
export interface OnboardingCheckOptions {
    cwd: string;
    command: string;
    appId?: string;
    apikey?: string;
    capacitorConfig?: string;
    packageJson?: string;
    mainFile?: string;
    supaHost?: string;
    supaAnon?: string;
}
export declare function startOnboardingCheck(command: Command, commandPath: string, workerUrl: URL): void;
