export declare const aspectRatiosArray: readonly ["fourByOne", "twoByOne", "sixteenByNine", "fourByThree", "oneByOne", "square", "oneByTwo"]; export type AspectRatios = typeof aspectRatiosArray[number]; export interface ImageProps { aspectRatio?: AspectRatios; backgroundColor?: string; border?: string; isCropped?: boolean; src?: string; } export declare const ImageExample: (props: ImageProps) => import("react/jsx-runtime").JSX.Element; export default ImageExample;