import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { ElevationType } from '../../Tooltip';
type ClassNames = Readonly<{
    wrapper?: string;
}>;
export type TabListProps = {
    classNames?: ClassNames;
    onSelect?: (arg1: {
        tabId: string;
        label?: string;
    }) => unknown;
    children?: React.ReactNode;
    size?: 'medium';
    selectedTab?: {
        tabId: string;
        label?: string;
    };
    menuWidth?: string;
    elevation?: ElevationType;
};
export declare const TabList: Flow.AbstractComponent<TabListProps, HTMLDivElement>;
export {};
//# sourceMappingURL=TabList.d.ts.map