import React from "react"; export interface SubRowContextProps { isSubRow?: boolean; firstRowId: string; addRow: (id: string) => void; removeRow: (id: string) => void; } export declare const SubRowContext: React.Context; declare const SubRowProvider: { ({ children }: { children: React.ReactNode; }): React.JSX.Element; displayName: string; }; export default SubRowProvider;