import React from 'react'; export interface EntityImageProps { src?: string | null; alt?: string; /** Overrides the initials source. Defaults to `alt`. */ fallbackText?: string; className?: string; } export declare function EntityImage({ src, alt, fallbackText, className }: EntityImageProps): React.JSX.Element; //# sourceMappingURL=entity-image.d.ts.map