import { IEmojiIcon } from '@vev/utils'; import { BoxProps, BoxSize } from '../silke-box'; import { SilkeIcons } from '../silke-icon'; export type SilkeImageProps = { src?: string; icon?: IEmojiIcon | SilkeIcons; alt?: string; avatar?: BoxSize | true; bgColor?: string; } & BoxProps; export declare function SilkeImage({ src, alt, avatar, icon, draggable, bgColor, ...rest }: SilkeImageProps): import("react/jsx-runtime").JSX.Element;