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<Partial<{
    className: string;
    visible: boolean;
}> & Pick<React.PropsWithChildren<ModalWrapperProps>, "children" | "width">>;
export default _default;
