import React from 'react'; interface MediaQueryProps { children?: React.ReactNode | ((args: { matches: boolean; }) => React.ReactNode); query: string; } /** * By default, the `` component will only render its children * if the provided media query matches. The component automatically responds * to changes in the media. */ export declare function MediaQuery({ children, query }: MediaQueryProps): React.JSX.Element; export {};