import { TabsSimplePanel, type TabsSimplePanelProps } from "./TabsSimplePanel"; import type { ThemeBaseSize } from "../theme.types"; export interface TabsSimpleProps extends React.ComponentProps<"div"> { /** * 变体 * @default lifted */ variant?: "border" | "box" | "lift"; position?: "top" | "bottom"; /** 尺寸 * @default "md" */ size?: ThemeBaseSize; children: React.ReactElement[]; className?: string; initIndex?: number; } export declare function TabsSimple(props: TabsSimpleProps): import("react").JSX.Element;