import BaseComponent from "../Counter/BaseComponent";
export default class TimerComponent extends BaseComponent {
    props: any;
    value: any;
    timer: number;
    defaultStyles: string;
    defaultText: string;
    constructor();
    static get observedAttributes(): string[];
    attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
    updateDynamicElement(): void;
}
export { TimerComponent };
