import React from 'react'; interface Props { className?: string; visible?: boolean; } declare const defaultProps: { className: string; visible: boolean; }; export type ModalWrapperProps = Props & typeof defaultProps; declare const _default: React.ComponentType & Omit, "className" | "visible">>; export default _default;