8 lines
442 B
TypeScript
8 lines
442 B
TypeScript
import type { IRenderFunction } from '../../Utilities';
|
|
import type { IPersonaProps, IPersonaSharedProps } from './index';
|
|
import type { JSXElement } from '@fluentui/utilities';
|
|
/**
|
|
* function to override the default onRender callbacks
|
|
*/
|
|
export declare const wrapPersona: (example: IPersonaSharedProps, shouldWrapPersonaCoin?: boolean) => ((coinProps: IPersonaProps, defaultRenderer: IRenderFunction<IPersonaProps>) => JSXElement | null);
|