import HdgElement from "@hdgd/core"; export interface Props { label: string; badgecontent?: string; name: string; } declare class HdgTabbarItem extends HdgElement { active: boolean; icon: string; iconsize: string; name: string; badgetype: string; badgecontent: string; inactivecolor: string; activecolor: string; label: string; renderIcon: () => any; render(): any; } export default HdgTabbarItem;