/// <reference types="react" />
import "./index.scss";
interface Item {
    title: any;
    id: string;
}
interface ElevatorProps {
    className?: any;
    activeKey?: string;
    dataSource: Item[];
    offset?: any;
    container?: any;
    children?: any;
    useAbsolute?: boolean;
    hasMargin?: boolean;
    tabProps?: any;
}
export default function Elevator(props: ElevatorProps): JSX.Element;
export {};
