import { ModalProps as AntDModalProps } from 'antd'; import { Theme } from '../../utils/theme'; type ModalProps = AntDModalProps & { theme: Theme; }; declare const StyledModal: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute> & string & Omit & import('antd/es/modal/confirm').ModalStaticFunctions & { useModal: typeof import('antd/es/modal/useModal').default; destroyAll: () => void; config: typeof import('antd/es/modal/confirm').modalGlobalConfig; _InternalPanelDoNotUseOrYouWillBeFired: (props: any) => React.JSX.Element; }, keyof import('react').Component>; declare const StyledModalGlobal: import('react').NamedExoticComponent; export { StyledModal, StyledModalGlobal };