import type { CapacitorConfig } from '../config';
import type { NotifyAppReadyCheckOptions } from '../notify-app-ready-background';
export interface NotifyAppReadyProject {
    dir: string;
    workspaceRoot: string;
    config: CapacitorConfig;
    appId: string;
    webDir?: string;
}
export declare function resolveNotifyAppReadyProject(options: NotifyAppReadyCheckOptions): Promise<NotifyAppReadyProject | undefined>;
