import { ComponentProps, ForwardedRef } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { TabType } from "./useTabsItems"; declare const DefaultElement = "div"; export interface InnerTabListProps extends InternalProps, StyledComponentProps { autoFocus?: boolean | number; forwardedRef: ForwardedRef; tabs?: TabType[]; } export declare function InnerTabList({ as, autoFocus, forwardedRef, tabs, ...rest }: InnerTabListProps): JSX.Element; /** * [Documentation](https://orbit.sharegate.design/?path=/docs/tabs--default-story) */ export declare const TabList: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type TabListProps = ComponentProps; export {};