import { ToReact } from './helpers.types'; import { Content_Props } from '../react/sub-components.types'; import { ZTabs } from '../tabs'; export type ZrTabs_Props = ToReact<'Tabs'>; type ZrTabs_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Tab: typeof Tab; }; declare const Tab: { (props: Content_Props & { label: string; index: number; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrTabs_Type; export { Namespace as ZrTabs };