import { type CSSProperties } from "react";
import type { GridBoxItem } from "./+types";
import { type SlotComponent } from "@1771technologies/lytenyte-core/yinternal";
export interface GridBoxItemProps {
    readonly item: GridBoxItem;
    readonly itemAs?: SlotComponent;
    readonly itemClassName?: string;
    readonly itemStyle?: CSSProperties;
}
export declare const BoxItem: import("react").ForwardRefExoticComponent<Omit<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & GridBoxItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
