bpms_site/.svn/pristine/03/0323e545bccb16607b0e8bf0a3c9895dce11068e.svn-base
2025-11-02 16:38:49 +03:30

11 lines
305 B
Plaintext

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<DialogProps>;
export { Dialog };