import { BoxProps } from "@specimen/foundation"; import { AspectRatioType } from "./AspectRatio"; export interface BaseProps extends BoxProps { aspectRatio?: AspectRatioType; name: string; alt: string; } export declare const Base: ({ name, alt, aspectRatio, ...props }: BaseProps) => import("@emotion/react/jsx-runtime").JSX.Element;