export declare const getConfig: ({ rootPath }: {
    rootPath: string;
}) => Promise<{
    android: {
        path: string;
        exists: boolean;
    };
    ios: {
        path: string;
        exists: boolean;
        pbxprojPath: string | undefined;
    };
}>;
//# sourceMappingURL=get-config.d.ts.map