import { ColumnCellKind } from './column-cell-kind.js'; import './table-properties-types.js'; type PersonFilterOption = { value: string; label: string; initials?: string; email?: string; }; /** Unique person options for avatar pickers — derived from the hub dataset. */ declare function derivePersonFilterOptions>(rows: T[], fieldKey: string, cellKind?: ColumnCellKind): PersonFilterOption[]; declare function isPersonSelectFilter(cellKind?: ColumnCellKind): boolean; export { type PersonFilterOption, derivePersonFilterOptions, isPersonSelectFilter };