import type { ModalProps as AntdModalProps } from 'antd/lib/modal'; import React from 'react'; import './index.less'; export declare type ModalProps = AntdModalProps & { children?: React.ReactNode; hasFooter?: boolean; config?: { fullScreen?: boolean; width?: string | number; height?: string | number; logo?: React.ReactNode; }; }; export declare const Modal: ({ visible, className, title, width, style, children, onCancel, hasFooter, footer, config, ...rest }: ModalProps) => JSX.Element; export default Modal; //# sourceMappingURL=index.d.ts.map