import type React from "react";
export interface TabsProps {
    value: string;
    onChange?: (event: React.ChangeEvent<object>, value: string) => void;
    variant: "scrollable" | "fullWidth";
    scrollButtons?: "auto";
    children: React.ReactNode;
}
export declare function Tabs({ value, onChange, variant, scrollButtons, children }: TabsProps): import("react/jsx-runtime").JSX.Element;
