bpms_site/.svn/pristine/08/08648138202331a3b27c95554bfc616f5a3e8b35.svn-base
2025-11-02 16:38:49 +03:30

8 lines
199 B
Plaintext

import * as React from 'react';
export type DialogBodyProps = {
children?: React.ReactNode;
className?: string;
};
declare const DialogBody: React.FC<DialogBodyProps>;
export { DialogBody };