import HdgElement from "@hdgd/core"; import "../tabbaritem"; export interface Props { fixed?: boolean; inactivecolor?: string; activecolor?: string; value?: number; } export interface CustomEvent { change: (e: { detail: { value: number | string; }; }) => void; } declare class HdgTabbar extends HdgElement { fixed: boolean; placeholder: boolean; inactivecolor: string; activecolor: string; value: string; slotRef: any; shouldComponentUpdate(propName: string, oldValue: string, newValue: string): boolean; slotchange: () => void; eventListener: (e: any) => void; render(): any; } export default HdgTabbar;