import { WithSupportProps } from '@snack-uikit/utils'; import { MODE } from './constants'; export type ImageProps = WithSupportProps<{ /** Путь до картинки */ src: string; /** Описание картинки */ alt: string; } /** Image mode */ & ({ mode?: typeof MODE.Little | typeof MODE.Middle; hideFading?: never; } | { mode: typeof MODE.Background; hideFading?: boolean; })>; export declare function Image({ src, alt, mode, hideFading, ...rest }: ImageProps): import("react/jsx-runtime").JSX.Element;