interface resolutionType { maxWidth: number; maxHeight: number; userAgent: string; screenWidth: number; screenHeight: number; pixelRatio: number; } /** * @public * @function MaxResolution * @returns {resolutionType} */ declare const MaxResolution: () => resolutionType; export default MaxResolution;