import React from 'react'; import { Breakpoint } from './styles/createBreakpoints'; type MediaProps = { lt: Breakpoint | number; } | { gt: Breakpoint | number; }; type VisibilityProps = MediaProps & { hide?: boolean; children?: React.ReactNode; }; export declare function Visibility(props: VisibilityProps): JSX.Element; type HideProps = MediaProps & { children?: React.ReactNode; }; export declare function Hide(props: HideProps): JSX.Element; type ShowProps = MediaProps & { children?: React.ReactNode; }; export declare function Show(props: ShowProps): JSX.Element; export {};