import React from 'react'; import { FlintTabList as FlintTabListElement } from '@getufy/flint-ui/tabs/flint-tabs'; export interface FlintTabListProps extends React.HTMLAttributes { /** * Layout direction of the tab list. * Allowed values: 'horizontal' | 'vertical' */ orientation?: 'horizontal' | 'vertical'; /** * Display variant controlling tab sizing and scrollability. * Allowed values: 'standard' | 'fullWidth' | 'scrollable' */ variant?: 'standard' | 'fullWidth' | 'scrollable'; /** Whether to center the tabs within the tab list. */ centered?: boolean; /** * Whether to show scroll buttons in scrollable mode. * Allowed values: 'auto' | 'false' */ scrollButtons?: 'auto' | 'false'; /** Accessible label for the tab list. */ ariaLabel?: string; /** * Tab activation mode passed down from flint-tabs. * Allowed values: 'automatic' | 'manual' */ activation?: 'automatic' | 'manual'; /** * Tab placement passed down from flint-tabs. * Allowed values: 'top' | 'bottom' | 'start' | 'end' */ placement?: 'top' | 'bottom' | 'start' | 'end'; } export declare const FlintTabList: React.ForwardRefExoticComponent>;