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