import { Tabs as TabsPrimitive } from "radix-ui"; import { type ComponentProps } from "react"; interface TabsWithChildrenProps extends Omit, "asChild" | "orientation"> { ariaLabel?: string; tabs: string[]; } export declare function TabsWithChildren({ ariaLabel, children, className, defaultValue, tabs, ...props }: TabsWithChildrenProps): import("react/jsx-runtime").JSX.Element; interface TabContentProps extends Omit, "asChild" | "forceMount" | "value"> { order: number; } export declare function TabContent({ className, order, ...props }: TabContentProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=tabs-with-children.d.ts.map