import React, { ReactElement } from "react"; import { IconProp } from "../icon"; import { ControlsProps } from "../../common/controls.type"; import { TabUnderlineStyle } from "../tabs"; export interface TabProps extends Omit { icon?: IconProp; suffixIcon?: IconProp; prefix?: ReactElement; suffix?: ReactElement; label: string | IconProp | ReactElement; children: ReactElement; active?: boolean; onClick?: () => void; expanded?: boolean; underlineStyle?: TabUnderlineStyle; } declare const Tab: ({ label, icon, suffixIcon, prefix, suffix, active, disabled, onClick, expanded, underlineStyle, }: TabProps) => React.JSX.Element; export default Tab;