import { ActionFn } from "@bodynarf/utils"; /** Internal context value shared between SidePanel and its sub-components */ export type SidePanelContextValue = { onClose: ActionFn; }; /** React context instance for SidePanel internal state */ export declare const SidePanelContext: import("react").Context; /** * Returns the nearest SidePanel context value. * Throws if called outside of a `` tree. */ export declare const useSidePanelContext: () => SidePanelContextValue; //# sourceMappingURL=context.d.ts.map