import React from 'react'; export interface Props { children: React.ReactNode; show?: boolean; footer?: boolean; intent?: 'success' | 'danger' | 'warning' | 'none'; label?: string; labelledBy?: string; confirmIcon?: React.ReactNode; confirmText?: string; cancelText?: string; onClose?: () => void; onCancel?: () => void; onConfirm?: () => void; } declare const Dialogue: (props: Props) => JSX.Element; export default Dialogue;