import React from 'react'; export interface EntityImageProps { src?: string | null; alt?: string; /** Overrides the initials source. Defaults to `alt`. */ fallbackText?: string; /** * REPLACES the default size, for both the image and its initials fallback. * * Sizing through `className` does NOT work here and cannot be made to: * the default is responsive (`size-[52px] md:size-[60px]`), and * tailwind-merge lets `size-*` override `w`/`h` but never the reverse — so a * caller passing `h-4 w-6` dropped the base `size-[52px]` and kept * `md:size-[60px]`, rendering 16px on a phone and 60px on a desktop. State * the size here instead; it is substituted, not merged. */ sizeClassName?: string; className?: string; } export declare function EntityImage({ src, alt, fallbackText, sizeClassName, className }: EntityImageProps): React.JSX.Element; //# sourceMappingURL=entity-image.d.ts.map