type Unsubscribe = () => void; type ContextValues = { subscribe: (closeMethod: () => void) => Unsubscribe; announceOpening: () => void; }; export declare const AccordionContext: import("react").Context; declare const _default: () => ContextValues; export default _default;