/// import type { BreakpointKey, BreakpointsProps } from './breakpoints'; /** * Props for Media Component * */ export interface MediaProps { children(value: BreakpointsProps): JSX.Element; } /** * Passes the `BreakpointsProps` to its children * * Needs provider for `BreakpointsProps` * * @example * * {({ currentBreakpoint }) => currentBreakpoint === "desktop" &&
} * */ export declare function Media(props: MediaProps): JSX.Element; //# sourceMappingURL=Media.d.ts.map