import React from "react";
export interface ImageBoxProps {
    children?: JSX.Element | JSX.Element[] | string | number;
    size?: "sm" | "md";
    href?: string;
    width?: any;
    style?: any;
}
declare const ImageBox: React.FC<ImageBoxProps>;
export default ImageBox;
