/// export type DataGridContextProps = { checkIsOpened: (key: string) => boolean; checkIsMoreOpened: (key: string) => boolean; toggleOpenItems: (key: string) => void; toggleOpenMoreItems: (key: string) => void; isLoading?: boolean; }; export declare const DataGridContext: import("react").Context;