import type { ValuesOf } from "../../util/typings.js"; /** Appearance values for Tablist. */ export declare const TablistAppearances: { readonly subtle: "subtle"; readonly transparent: "transparent"; }; export type TablistAppearance = ValuesOf; /** Orientation values for Tablist. */ export declare const TablistOrientations: { readonly horizontal: "horizontal"; readonly vertical: "vertical"; }; export type TablistOrientation = ValuesOf; /** Size values for Tablist. */ export declare const TablistSizes: { readonly small: "small"; readonly medium: "medium"; readonly large: "large"; }; export type TablistSize = ValuesOf; /** Event names for Tablist. */ export declare const TablistEventNames: { readonly activeIndexChange: "active-index-change"; readonly change: "change"; }; //# sourceMappingURL=tablist.options.d.ts.map