import * as React from "react"; import { ImageProps } from '../Image'; export interface SlatImageProps extends Omit { src?: string; fallbackIcon?: string; } declare const SlatImage: React.FC; export default SlatImage;