UNPKG

hh-ui-components

Version:
11 lines (10 loc) 275 B
/// <reference types="react" /> interface ModalProps { children?: any; title?: string; onClick?: () => void; open?: boolean; label?: string; } export declare const Modal: ({ children, title, onClick, open, label, }: ModalProps) => JSX.Element; export {};