import { ReactNode } from 'react'; /** * Standalone component for matching a media query */ export interface MatchMediaQueryProps { /** * @example '(max-width: 600px)' */ query: string; children: ReactNode; } /** * Standalone component for matching a media query * * Renders its children if the query matches * @param props * @returns * @example */ export declare function MatchMediaQuery(props: MatchMediaQueryProps): JSX.Element; //# sourceMappingURL=MatchMediaQuery.d.ts.map