import type { ContainerState } from '../shared/types';
interface TabProps<T> {
    labels: T[];
    activeLabel: T;
    containerState: ContainerState;
    onChange: (index: T) => void;
}
export declare function Tabs<T extends string>({ activeLabel, labels, containerState, onChange }: TabProps<T>): any;
export {};
