@mui/x-data-grid-premium
Version:
The Premium plan edition of the MUI X Data Grid Components.
8 lines • 332 B
TypeScript
import * as React from 'react';
export interface CollapsibleContextValue {
open: boolean;
onOpenChange: (open: boolean) => void;
panelId: string | undefined;
}
export declare const CollapsibleContext: React.Context<CollapsibleContextValue | undefined>;
export declare function useCollapsibleContext(): CollapsibleContextValue;