import React from "react"; interface FlexImagesItemProps { /** * items */ children?: React.ReactNode; /** * The url of the image item. */ imgUrl: string; /** * The width of the image. */ imgWidth?: number; /** * The height of the image. */ imgHeight?: number; /** * Item style. */ style?: React.CSSProperties; /** * The class name of the image item. */ className?: string; /** * The onClick event of the image item. */ onClick?: React.MouseEventHandler | undefined; } /** * react-flex-images item. */ export default function FlexImagesItem(props: FlexImagesItemProps): JSX.Element; export {}; //# sourceMappingURL=FlexImagesItem.d.ts.map