import { ViewProps } from "@vnxjs/components/types/View";
import { CSSProperties, ReactNode } from "react";
import { SidebarTabObject } from "./sidebar-tab.shared";
export interface SidebarProps extends ViewProps {
    className?: string;
    style?: CSSProperties;
    defaultValue?: any;
    value?: any;
    children?: ReactNode;
    onChange?(value: any, tab: SidebarTabObject): void;
}
declare function Sidebar(props: SidebarProps): JSX.Element;
export default Sidebar;
