import type { FileIdentifier } from '@atlaskit/media-client'; import type { SSR } from '@atlaskit/media-common'; import type { Dimensions } from './types'; export declare const InlineImageCard: ({ dimensions, identifier, renderError, alt, isLazy, ssr, crop, stretch, }: { alt?: string; crop?: boolean; dimensions?: Dimensions; identifier: FileIdentifier; isLazy?: boolean; renderError: (props: { error: Error; }) => JSX.Element | null; ssr?: SSR; stretch?: boolean; }) => JSX.Element | null;