export declare const resolutions: { readonly mobile: { readonly label: "Mobile"; readonly width: 230; readonly height: 410; }; readonly mobileLandscape: { readonly label: "Mobile Landscape"; readonly width: 410; readonly height: 230; }; readonly tablet: { readonly label: "Tablet"; readonly width: 432; readonly height: 768; }; readonly tabletLandscape: { readonly label: "Tablet Landscape"; readonly width: 768; readonly height: 432; }; readonly desktop: { readonly label: "Desktop"; readonly width: 675; readonly height: 1200; }; readonly desktopLandcape: { readonly label: "Desktop Landscape"; readonly width: 1200; readonly height: 675; }; readonly desktopLarge: { readonly label: "Desktop Large"; readonly width: 900; readonly height: 1600; }; readonly desktopLargeLandscape: { readonly label: "Desktop Large Landscape"; readonly width: 1600; readonly height: 900; }; }; export declare type TResolutionKey = keyof typeof resolutions; export declare const findResolutionKey: (width: number, height: number) => TResolutionKey | null;