import { NoticeProps } from "@trackunit/react-components"; import { ReactElement } from "react"; export type NoticeCellProps = NoticeProps & { tooltipLabel?: string; }; /** * NoticeCell renders a Notice component inside a table cell, displaying an inline colored message * (info, warning, success, danger). It accepts the same props as Notice. * * ### When to use * Use NoticeCell to display contextual messages or status banners within a table row — * for example, a warning about an expired certificate or an info notice about a pending update. * * ### When not to use * Do not use NoticeCell for simple colored text — use `HighlightCell`. * * @example Warning notice in a table cell * ```tsx * import { NoticeCell } from "@trackunit/react-table-base-components"; * * const cell = () => Certificate expires soon; * ``` * @param {NoticeCellProps} props - The props for the NoticeCell component * @returns {ReactElement} NoticeCell component */ export declare const NoticeCell: ({ ref, tooltipLabel, ...rest }: NoticeCellProps) => ReactElement;