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