import * as React from 'react'; import type { IDocumentCardImageProps } from './DocumentCardImage.types'; import type { JSXElement } from '@fluentui/utilities'; export interface IDocumentCardImageState { readonly imageHasLoaded: boolean; } /** * {@docCategory DocumentCard} */ export declare class DocumentCardImageBase extends React.Component { private _classNames; constructor(props: IDocumentCardImageProps); render(): JSXElement; private _onImageLoad; private _renderCenterIcon; private _renderCornerIcon; }