@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 405 B
TypeScript
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 };