import React, { PropsWithChildren } from 'react'; type RowContextProps = PropsWithChildren<{ disabled: boolean; isExpandable?: boolean; isExpanded?: boolean; depth?: number; toggleExpanded?: () => void; }>; export declare const useRowContext: () => RowContextProps; export declare const RowContextProvider: ({ children, disabled, isExpandable, isExpanded, depth, toggleExpanded, }: RowContextProps) => React.JSX.Element; export {}; //# sourceMappingURL=RowContext.d.ts.map