import type { ViewProps } from "@tarojs/components/types/View"; import { type CSSProperties, type ReactNode } from "react"; import type { 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;