import type React from 'react'; export interface MatchMediaProps { id?: string; className?: string; style?: React.CSSProperties; minWidth?: number; maxWidth?: number; width?: number; minHeight?: number; maxHeight?: number; height?: number; orientation?: 'landscape' | 'portrait'; children?: React.ReactNode; } export declare const MatchMedia: React.ComponentType;