import type { CommonProps, LabellableProps } from '../types.js'; export interface TableRowSelectorProps extends CommonProps, Omit { } /** * Controls the selection state of a single row within a table. * * See [table building guide](https://ui.cimpress.io/dev-guides/tables/). */ declare const _TableRowSelector: (props: TableRowSelectorProps & import("react").RefAttributes) => import("react").JSX.Element | null; export { _TableRowSelector as TableRowSelector }; //# sourceMappingURL=table-row-selector.d.ts.map