import * as React from 'react'; export type DialogProps = { children?: React.ReactNode; type: 'error' | 'warning'; 'aria-labelledby': string; 'aria-describedby': string; onClose?: (e: MouseEvent | TouchEvent) => void; }; declare const Dialog: React.FC; export { Dialog };