import { type FC, type MouseEventHandler } from "react";
export interface BlokImageProps {
    src: string;
    alt: string;
    style?: object;
    width?: string | number;
    height?: string | number;
    fit?: "contain" | "cover" | "fill" | "none" | "scale-down" | "inherit" | "initial" | "revert" | "unset";
    position?: "static" | "relative" | "absolute" | "fixed" | "sticky" | "inherit" | "initial" | "revert" | "unset";
    className?: string;
    onClick?: MouseEventHandler<HTMLElement>;
}
export declare const BlokImage: FC<BlokImageProps>;
