import type { ValuesOf } from '../../Types/ValuesOf'; /** * `TableSelectionType` - Defines the target unit of table selection. * * @public */ export declare const TableSelectionType: { /** * `row` - Selection is applied to entire rows. */ readonly Row: "row"; /** * `cell` - Selection is applied to individual cells. */ readonly Cell: "cell"; }; /** * @public */ export type TableSelectionType = ValuesOf; //# sourceMappingURL=TableSelectionType.d.ts.map