import { Source } from "../tools/Source"; export type GlImageProps = { id?: string; className?: string; src: string; alt?: string; width?: number; height?: number; hasShadow?: boolean; hasBorderRadius?: boolean; sources?: Source[]; onLoad?: () => void; }; export declare const GlImage: import("react").MemoExoticComponent>>;