export declare enum DeviceCapability {
    SCREEN_SIZE = "screenSize"
}
export interface SupportedDeviceCapabilities {
    [DeviceCapability.SCREEN_SIZE]: {
        w: number;
        h: number;
    };
}
export declare namespace SupportedDeviceCapabilities {
    function create(targetDevice: string): SupportedDeviceCapabilities | undefined;
}
