import { ShowProps } from "./show";
export type HideProps = ShowProps;
/**
 * `Hide` wraps a component to not render if the provided media query matches.
 *
 * @see Docs https://v2.chakra-ui.com/docs/components/show-hide
 */
export declare function Hide(props: HideProps): import("react/jsx-runtime").JSX.Element;
export declare namespace Hide {
    var displayName: string;
}
