import type { IRenderFunction } from '../../Utilities';
import type { IPersonaProps, IPersonaSharedProps } from './index';
/**
 * function to override the default onRender callbacks
 */
export declare const wrapPersona: (example: IPersonaSharedProps, shouldWrapPersonaCoin?: boolean) => (coinProps: IPersonaProps, defaultRenderer: IRenderFunction<IPersonaProps>) => JSX.Element | null;
