import { PlatformInfo } from './types';
export declare class PlatformDetector {
    private static instance;
    private platformInfo;
    private constructor();
    static getInstance(): PlatformDetector;
    detect(): PlatformInfo;
    isSupported(): boolean;
    getPlatformName(): string;
    isNativePlatform(): boolean;
}
