import React from 'react';
export interface ILmTabsProps {
    items: {
        key: string;
        name: string | React.ReactNode;
        children?: string | React.ReactNode;
    }[];
    activeKey?: string;
    onChange?: (activeKey: string) => void;
}
export declare type TabSizeMap = Map<React.Key, {
    width: number;
    height: number;
    left: number;
    top: number;
}>;
declare function LmCustomTabs(props: ILmTabsProps): React.JSX.Element;
export default LmCustomTabs;
