import { type CSSProperties, type HTMLAttributes } from 'react'; export interface FractalFramesImageSource { src: string; alt?: string; } export interface FractalFramesProps extends Omit, 'children'> { className?: string; images?: readonly FractalFramesImageSource[]; aspectRatio?: CSSProperties['aspectRatio']; minHeight?: CSSProperties['minHeight']; objectFit?: CSSProperties['objectFit']; maxDepth?: number; tileLabel?: string; } export declare const FractalFrames: ({ className, images, aspectRatio, minHeight, objectFit, maxDepth, tileLabel, style, ...props }: FractalFramesProps) => import("react/jsx-runtime").JSX.Element;