import type { BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; import type { Variants } from "./types"; export interface TabListProps extends HTMLPasteProps<"div"> { /** * Required label for this Tabs component. Titles the entire Tabbing context for screen readers. * * @type {string} * @memberof TabListProps */ "aria-label": string; /** * Overrides the default element name to apply unique styles with the Customization Provider. * * @default "HORIZONTAL_TAB_LIST" or "VERTICAL_TAB_LIST" * @type {BoxProps["element"]} * @memberof TabListProps */ element?: BoxProps["element"]; children: React.ReactNode; /** * Changes each Tab to either equally fit the width of the containing element or hug the contents of its label. * * @type {Variants} * @memberof TabListProps */ variant?: Variants; } declare const TabList: React.ForwardRefExoticComponent>; export { TabList }; //# sourceMappingURL=TabList.d.ts.map