import { type ComponentPropsWithoutRef } from "react"; export interface TabListNextProps extends Omit, "onChange"> { /** * Styling active color variant. Defaults to "primary". */ activeColor?: "primary" | "secondary" | "tertiary"; /** * The appearance of the tabs. Defaults to "bordered". */ appearance?: "bordered" | "transparent"; } export declare const TabListNext: import("react").ForwardRefExoticComponent>;