import * as React from 'react';
import { IPersonaProps } from './Persona.Props';
import './Persona.scss';
export declare class Persona extends React.Component<IPersonaProps, any> {
    static defaultProps: IPersonaProps;
    render(): JSX.Element;
    /** Get (up to 2 characters) initials based on display name of the persona. */
    private _getInitials(displayName, isRtl);
    private _getColorFromName(displayName);
}
