import { IBaseSystemMessageProps } from '../SystemResponse/SystemMessage'; import { RenderMode } from '../../dtos/RenderOptions.dto'; export interface DefaultImageProps extends IBaseSystemMessageProps { /** * A URL for the image to render. */ image: string | null; /** * The mode which we're rendering the chat widget. * This effects the way we show images. */ mode?: RenderMode; /** * If true, rounds the corners of the image border. * * @default true */ isRounded?: boolean; } /** * An image rendered as the `src` of an ``. * * @see {@link https://voiceflow.github.io/react-chat/?path=/story/core-image--round-corners} */ export declare const Image: React.FC; //# sourceMappingURL=index.d.ts.map