import React from "react"; import { type BoxProps } from "../Box/Box"; import type { BaseVariations } from "../../types"; export type InteractiveBoxProps = BoxProps & { destructive?: boolean; disabled?: boolean; fullWidth?: boolean; isPressed?: boolean; onBlur?: (e: React.FocusEvent) => void; onClick?: (e: React.MouseEvent) => void; onFocus?: (e: React.FocusEvent) => void; variant?: BaseVariations; tabIndex?: number; }; export declare const InteractiveBox: React.ForwardRefExoticComponent void; onClick?: (e: React.MouseEvent) => void; onFocus?: (e: React.FocusEvent) => void; variant?: BaseVariations; tabIndex?: number; } & React.RefAttributes>;