import React from 'react'; export interface TableSelectRowRootProps { children?: React.ReactNode; defaultSelectedRows?: string[]; selectedRows?: string[]; onSelectionChange?: (value: string[]) => void; } export interface TableSelectRowRootMethods { reset: () => void; } interface TableSelectRowCtxProps { selectedRows: string[]; setSelectedRows: React.Dispatch>; rows: Map, string>; isSelctedAllRows: boolean; setIsSelctedAllRows: React.Dispatch>; } declare const useTableSelectRowCtx: (consumerName: string) => TableSelectRowCtxProps; export { useTableSelectRowCtx }; export declare const TableSelectRowRoot: React.ForwardRefExoticComponent>; //# sourceMappingURL=table-select-row-root.d.ts.map