8 lines
341 B
TypeScript
8 lines
341 B
TypeScript
import * as React from 'react';
|
|
import type { IPersonaPresenceProps } from '../Persona.types';
|
|
/**
|
|
* PersonaPresence with no default styles.
|
|
* [Use the `getStyles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Styling)
|
|
*/
|
|
export declare const PersonaPresenceBase: React.FunctionComponent<IPersonaPresenceProps>;
|