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