import React from "react";
import "./Ui89Tabs.css";
import "../style/typo.css";
export interface Ui89TabsPropsOption {
    value: string | number;
    label: React.ReactNode;
}
export interface Ui89TabsProps {
    selected?: any;
    onChange?: (value: string | number) => void;
    options?: Ui89TabsPropsOption[];
    /**
     * Stretch options such that they evenly take up the entire width.
     */
    stretch?: boolean;
}
export declare function Ui89Tabs({ selected, onChange, options, stretch, }: Ui89TabsProps): React.JSX.Element;
