import * as React from 'react'; import type { AccordionRoot, AccordionRootState, AccordionValue } from './AccordionRoot'; export interface AccordionRootContext { disabled: boolean; handleValueChange: (newValue: Value, nextOpen: boolean, eventDetails: AccordionRoot.ChangeEventDetails) => void; keepMounted: boolean; state: AccordionRootState; value: AccordionValue; } export declare const AccordionRootContext: React.Context | undefined>; export declare function useAccordionRootContext(): AccordionRootContext; //# sourceMappingURL=AccordionRootContext.d.ts.map