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