import { CSSProps } from "../../../flex-ui-core/src"; /** * @typedef Theme.ProfileCardThemeProps * @property {CSSProps} AvatarContainer - Styles for the container for the avatar */ export interface ProfileCardThemeProps { AvatarContainer: CSSProps; } /** * Properties of the user profile card * @typedef ProfileCard.ProfileCardProps * @property {string} [imageUrl] - An image url * @property {Function} [onClick] - A handler for the button click * @property {string} [fullName] - The full name of the user * @private */ export interface ProfileCardProps { imageUrl?: string; onClick?: () => void; fullName?: string; } /** * @classdesc This component renders a user profile card. * Can be themed with `Theme.ProfileCard` in [Theme](Theme). * @component * @category Components / Basic * @hideconstructor * @param {ProfileCard.ProfileCardProps} ProfileCardProps - props * @private */ export declare function ProfileCard(props: ProfileCardProps): JSX.Element;