/// export type RowContextProps = { isDisabled: boolean; disabledReason?: string; addDisabledRow: (disabledReason?: string) => void; removeDisabledRow: () => void; }; export declare const RowContext: import("react").Context;