/// export interface Props { type?: "info" | "success" | "danger"; title?: string; message?: string; actions?: any; onClose?: (...args: any[]) => any; } declare const Prompt: ({ type, title, message, actions, onClose }: Props) => JSX.Element; export default Prompt;