import { PropsWithChildren } from 'react'; import { ThemingProps } from '@chakra-ui/react'; interface SidebarContainerProps extends ThemingProps<'Sidebar'>, PropsWithChildren { reduceMotion?: boolean; 'aria-label'?: string; } export declare const SidebarContainer: ({ children, reduceMotion, "aria-label": ariaLabel, ...props }: SidebarContainerProps) => JSX.Element; export {};