11 lines
305 B
Plaintext
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 };
|