import type { Devices } from "@kiwicom/orbit-components/lib/utils/mediaQuery/consts"; declare type Props = { readonly breakpoint: Devices; readonly callback: (boolean: any) => void; }; export default function useWithMediaQuery({ breakpoint, callback }: Props): void; export {};