import { UseMediaQueryOptions } from '@mui/system/useMediaQuery'; import { Theme } from "../styles/createTheme.js"; export * from '@mui/system/useMediaQuery'; // TODO v7: remove the generic. It's only used to prevent a breaking change in v6 from system's useMediaQuery in https://github.com/mui/material-ui/pull/44339. declare function useMediaQuery(queryInput: string | ((theme: T) => string), options?: UseMediaQueryOptions): boolean; export default useMediaQuery;