import * as React from 'react'; import { Direction } from '../types'; export declare type LocalHideProps = { above?: string; below?: string; direction?: Direction; children: React.ReactNode; }; export declare type HideProps = LocalHideProps; export declare function Hide(props: HideProps): React.ReactNode;