import * as React from 'react'; import { ImperativeHandler } from '../utils/dom'; import { ModalProps } from './Modal'; export interface ModalShowProps extends Omit { content?: React.ReactNode; } export declare type ModalShowHandler = Pick; export declare const show: (props: ModalShowProps) => ModalShowHandler; export declare const clear: () => void;