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