import React from "react"; export interface BaseTabGroupProps { position?: "start" | "center" | "end"; underline?: "always" | "shadow"; } export interface TabGroupProps extends BaseTabGroupProps, React.HTMLProps { children?: React.ReactNode; } /** * @deprecated TabUI instead */ export declare const TabGroup: ({ position, underline, children, }: TabGroupProps) => import("@emotion/react/jsx-runtime").JSX.Element;