import type { UseSidebarLayoutExposes } from '@primereact/types/headless/sidebar'; interface SidebarLayoutContextType extends UseSidebarLayoutExposes { cx: (key: string, params?: Record) => string | undefined; ptm: (key: string, params?: Record) => Record | undefined; } export declare const SidebarLayoutProvider: ({ value, children }: { value: SidebarLayoutContextType; children: React.ReactNode; }) => import("react").JSX.Element, useSidebarLayoutContext: () => SidebarLayoutContextType | undefined; export {};