import type { CapacitorConfig } from '../config';
import type { OnboardingCheckOptions } from './background';
export interface NotifyAppReadyProject {
    dir: string;
    workspaceRoot: string;
    config: CapacitorConfig;
    appId: string;
    webDir?: string;
}
export type OnboardingScanProject = Pick<NotifyAppReadyProject, 'dir' | 'workspaceRoot' | 'appId' | 'webDir'>;
export declare function resolveNotifyAppReadyProject(options: OnboardingCheckOptions): Promise<NotifyAppReadyProject | undefined>;
