import * as React from 'react'; import type { TransitionStatus } from '../../internals/useTransitionStatus'; export interface CollapsiblePanelContext { /** * The measured natural height of the panel contents, or `undefined` before * the first measurement. */ height: number | undefined; /** * The measured natural width of the panel contents, or `undefined` before * the first measurement. */ width: number | undefined; /** * The transition status of the panel, for driving enter/exit animations. */ transitionStatus: TransitionStatus; } export declare const CollapsiblePanelContextContext: React.Context; export declare function useCollapsiblePanelState(): CollapsiblePanelContext; //# sourceMappingURL=CollapsiblePanelContext.d.ts.map