/// <reference types="react" />
import { BaseComponent } from '../../Utilities';
import { IPersonaProps } from './Persona.types';
/**
 * Persona with no default styles.
 * [Use the `styles` API to add your own styles.](https://github.com/OfficeDev/office-ui-fabric-react/wiki/Styling)
 */
export declare class PersonaBase extends BaseComponent<IPersonaProps, {}> {
    static defaultProps: IPersonaProps;
    constructor(props: IPersonaProps);
    render(): JSX.Element;
    /**
     * Deprecation helper for getting text.
     */
    private _getText();
    private _renderElement;
}
