15 lines
506 B
TypeScript
15 lines
506 B
TypeScript
import * as React from 'react';
|
|
import type { IDocumentCardActivityProps } from './DocumentCardActivity.types';
|
|
import type { JSXElement } from '@fluentui/utilities';
|
|
/**
|
|
* {@docCategory DocumentCard}
|
|
*/
|
|
export declare class DocumentCardActivityBase extends React.Component<IDocumentCardActivityProps, any> {
|
|
private _classNames;
|
|
constructor(props: IDocumentCardActivityProps);
|
|
render(): JSXElement | null;
|
|
private _renderAvatars;
|
|
private _renderAvatar;
|
|
private _getNameString;
|
|
}
|