export type BoxTypes = "roundedBox" | "topRoundedBox" | "bottomRoundedBox" | "box"; export declare const boxType: (index: number, transactionsLength: number) => "roundedBox" | "topRoundedBox" | "bottomRoundedBox" | "box"; export default function BoxItem({ content, boxType, isDisabled, isNotClickable, }: { content: JSX.Element; boxType?: BoxTypes; isDisabled?: boolean; isNotClickable?: boolean; }): import("react/jsx-runtime").JSX.Element;