/** @jsxRuntime classic */ /** @jsx jsx */ import { jsx } from "@front10/base-elements"; import { ImageData } from "../CardProps"; interface Props { images: ImageData[]; } export interface ImageProps extends ImageData { width: number; height: number; placeholder?: boolean; onClick?: () => void; } export declare function TwitterImage({ image, width, altText, height, placeholder, onClick, }: ImageProps): jsx.JSX.Element | null; export declare function TwitterImages(props: Props): jsx.JSX.Element; export {};