// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; interface IPeopleProperty { property: string; value: string; iconTitle?: string; iconColor?: string; iconSize?: number; } interface IPeopleCardProps { properties: IPeopleProperty[]; image?: string; backgroundColor: string; linkedTextColor?: string; index?: number; nameLink?: string; floatImage?: boolean; styles?: any; } interface ICredentialValue { value?: string; iconTitle?: string; iconColor?: string; iconSize?: number; classNames?: any[]; link?: string; } interface IUserCredentials { PREFERREDNAME?: ICredentialValue; WORKEMAIL?: ICredentialValue; WORKPHONE?: ICredentialValue; MOBILEPHONE?: ICredentialValue; DEPARTMENT?: ICredentialValue; JOBTITLE?: ICredentialValue; } export class IAPeopleCard extends React.Component { assignCredentialsToUser: (properties: IPeopleProperty[]) => IUserCredentials; getLink: (parentObject: IUserCredentials, key: string) => string; render(): JSX.Element; } export {};