import './TabsMoreItems.css'; import React from 'react'; import { TabsPropGetLabel } from '../Tabs'; declare type TabsMoreItems = (props: { items: ITEM[]; renderItem: (item: ITEM, onClick: () => void) => React.ReactNode; getLabel: TabsPropGetLabel; getChecked: (item: ITEM) => boolean; height: number; } & React.RefAttributes, ref: React.Ref) => React.ReactElement | null; export declare const TabsMoreItems: TabsMoreItems; export {};