import React from "react"; import type { Props as TabsProps } from "./index"; export interface Props extends Omit { title: string; children: React.ReactNode; } export declare const Single: ({ children, title, ...rest }: Props) => React.JSX.Element;