import { IItem } from './types'; import { Optional } from '../../../types'; import { default as React } from 'react'; type IBaseItemProps = React.PropsWithChildren & { sources: Array; }>; type ITabProps = IBaseItemProps; type IGroupProps = IBaseItemProps; declare function Group(props: IGroupProps): import("react/jsx-runtime").JSX.Element; declare function Tab(props: ITabProps): import("react/jsx-runtime").JSX.Element; declare function useBaseItemChildren(props: React.PropsWithChildren): Array>; export { Group, Tab, useBaseItemChildren }; //# sourceMappingURL=Tab.d.ts.map