import { TaskContextProps } from "../../../../index"; import { ProfileHeaderMappedData as MappedData } from "../../types/profileHeaderTypes"; export declare enum ProfileHeaderTextChildrenKeys { container = "container", profileHeaderName = "header-name", profileHeaderSubtitle = "header-subtitle" } /** * Properties of ProfileHeaderText. * @typedef ProfileHeaderText.ProfileHeaderTextProps * @property {boolean} [weakNameTextColor] - Display the Name title in weaker text color. * @property {boolean} [unknownProfileBadge] - Display the badge-style Created-At subtitle for an unknown profile. * @deprecated * @altRecommendation MappedData type has been replaced by ProfileHeaderMappedData. Use ProfileHeaderMappedData instead. * @altRecommendationExample ProfileHeaderMappedData * @deprecatedSince 2.13.0 * @property {MappedData} [processedProfile] - Contains title and subtitle data to be displayed. * @since 2.9.0 */ export interface ProfileHeaderTextProps { weakNameTextColor: boolean; unknownProfileBadge: boolean; processedProfile: MappedData; } /** * Properties of ProfileHeaderText. * @typedef {ProfileHeaderText.ProfileHeaderTextProps} ProfileHeaderText.ProfileHeaderTextChildrenProps * @since 2.9.0 */ export interface ProfileHeaderTextChildrenProps extends TaskContextProps, ProfileHeaderTextProps { }