import React from "react"; import type { ModalProps } from "antd/es/modal"; import "./index.less"; export interface Props extends ModalProps { width: number | string; children: React.ReactNode; loading?: boolean; addInnerPadding?: boolean; } export declare const Modal: (props: Props) => React.JSX.Element;