import { FC, PropsWithChildren } from 'react'; declare const SidebarStylesProvider: import("react").Provider>, useSidebarStyles: () => Record; export { SidebarStylesProvider, useSidebarStyles }; export interface SidebarNestContextProps { nested: boolean; } export type SidebarNestContextReturn = SidebarNestContextProps; export declare const SidebarNestProvider: FC>; export declare const useSidebarNestContext: () => SidebarNestContextReturn; export interface SidebarContextProps { reduceMotion?: boolean; } export type SidebarContextReturn = SidebarContextProps; export declare const SidebarProvider: FC>; export declare const useSidebarContext: () => SidebarContextReturn;