import type React from "react"; type SummaryContextValue = { breakpoint: number; }; export declare function useSummaryContext(): SummaryContextValue; export declare function SummaryContextProvider({ breakpoint, children }: SummaryContextValue & { children?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; export {};