import HdgElement from "@hdgd/core"; import "../loading"; export interface Props { time: string; format?: string; } export interface CustomEvent { end: () => void; } declare class HdgButton extends HdgElement { constructor(); time: string; format: string; totalTime: number; timeCounter: any; setUnit: (val: any) => any; start: () => void; calculateShow: (value: any) => string; componentDidUpdate(propName: string, oldValue: string, newValue: string): void; render(): any; } export default HdgButton;