import { Platform } from "./Platform";
/**
 * A strategy to resolve the runtime's platform
 */
export declare class PlatformResolver {
    resolve(): Platform;
    isIOSEnvironment(): boolean;
    isAndroidEnvironment(): boolean;
}
