import React from 'react'; import { _ as _default } from '../../../Icon-19f6da82.js'; declare type ItemProps = { active?: boolean; children?: React.ReactNode; expanded?: boolean; icon?: React.ReactElement; label: string; responsive?: boolean; tag?: string; wrapper: React.FunctionComponent; }; declare const Item: ({ active, children, expanded, icon: Icon, label, responsive, tag, wrapper: Wrapper, }: ItemProps) => JSX.Element; declare type SubitemProps = { active?: boolean; label: string; wrapper: React.FunctionComponent; }; declare const Subitem: ({ active, label, wrapper: Wrapper }: SubitemProps) => JSX.Element; export { Item, Subitem };