export type CellStatusProps = { /** Status value - true for status without message, string for status with accessible message */ status: boolean | string; /** The variant determines the icon, color, and aria-label */ variant: "error" | "warning"; }; /** * Renders a status icon (error or warning) for cells. * When status is a string, it's used as the aria-label for accessibility and shown in a tooltip. * When the parent cell is focused, the tooltip is displayed for keyboard accessibility. */ export declare function CellStatus({ status, variant }: CellStatusProps): import("react/jsx-runtime").JSX.Element;