/** * Internal dependencies */ import type { SetSelection } from '../../types/private'; import type { NormalizedField } from '../../types'; interface DataViewsSelectionCheckboxProps { selection: string[]; onChangeSelection: SetSelection; item: Item; getItemId: (item: Item) => string; titleField?: NormalizedField; disabled: boolean; tabIndex?: number; } export default function DataViewsSelectionCheckbox({ selection, onChangeSelection, item, getItemId, titleField, disabled, ...extraProps }: DataViewsSelectionCheckboxProps): import("react").JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map