import { ChipProps } from '../../../../components/Chip'; /** * The accepted value type for the chips formatter function */ export type ChipsValueType = string | string[] | ChipProps | ChipProps[]; /** * Props for the chips formatter function */ export type ChipsFormatterOptions = { /** * Whether to truncate the chips instead of wrapping */ truncateChips?: boolean; }; /** * Helper function for formatting table cells with chips * @param value - The value to format * @param options - The options for the chips formatter * @returns The formatted chips */ export declare const chipsFormatter: (value?: ChipsValueType, { truncateChips }?: ChipsFormatterOptions) => import("react/jsx-runtime").JSX.Element;