import { CSSProperties, ReactNode } from 'react'; import { FormOptions } from '../../interfaces/index.js'; export interface TabsItemProps extends Record { label?: string; icon?: string; children?: ReactNode; } export interface TabsLegacyProps extends Record { AddButton?: any; current?: TabsItemProps; items?: TabsItemProps[]; style?: CSSProperties; className?: string; reverse?: boolean; onClick?: (item: TabsItemProps) => void; i18n?: FormOptions["i18n"]; } export declare function TabsLegacy({ style, current, items, HeaderChildren, AddButton, className, onClick, reverse, after, ...additionalProps }: TabsLegacyProps): import("react/jsx-runtime").JSX.Element;