import React, { HTMLAttributes, ReactNode } from 'react';
export type ProfileDetailModalProps = {
    open?: boolean;
    onClose?: () => void;
    children: ReactNode;
    profileModalProps?: any;
} & HTMLAttributes<HTMLDivElement>;
declare const ProfileDetailModal: ({ open, onClose, children, profileModalProps, }: ProfileDetailModalProps) => React.JSX.Element;
export { ProfileDetailModal };
