import type React from "react";
export interface DecorativeBoxProps {
    /**
     * Decorative variant style
     */
    variant?: "bitcoin" | "golden" | "glow" | "gradient";
    /**
     * Border radius size
     */
    borderRadius?: "small" | "medium" | "large" | "full";
    /**
     * Enable hover effects
     */
    interactive?: boolean;
    /**
     * Additional styles
     */
    style?: React.CSSProperties;
    /**
     * Child elements
     */
    children?: React.ReactNode;
    /**
     * Additional CSS class
     */
    className?: string;
    /**
     * Click handler
     */
    onClick?: () => void;
}
/**
 * DecorativeBox component for styled display of bitcoin images and avatars
 *
 * Provides decorative styling with Bitcoin-themed enhancements
 */
export declare function DecorativeBox({ variant, borderRadius, interactive, style, children, className, onClick, ...props }: DecorativeBoxProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=DecorativeBox.d.ts.map