1import type React from 'react' 2 3import {type ViewStyleProp} from '#/alf' 4 5export type ProfileHoverCardProps = ViewStyleProp & { 6 children: React.ReactNode 7 did: string 8 disable?: boolean 9 inline?: boolean 10}