/**
 * @file wass-rct-ui
 * @description A reusable ImageView component that supports dynamic styles and classes.
 * @author Web Apps Software Solutions
 * @copyright © 2024 Web Apps Software Solutions. All rights reserved.
 * @license MIT
 * @repository https://github.com/WebAppSoftNK/wass-rct-ui
 */
import * as React from "react";
export interface ImageViewProps {
    isRounded?: boolean;
    className?: string;
    link?: string;
    alt?: string;
    placeholder?: string;
    squareHeight?: number;
    squareWidth?: number;
    ratioHeight?: number;
    ratioWidth?: number;
    customWidth?: number | string;
    customHeight?: number | string;
}
declare const ImageView: React.FC<ImageViewProps>;
export default ImageView;
