import * as timer from "@zag-js/timer"; import { VanillaMachine } from "@zag-js/vanilla"; import { Component } from "../lib"; declare global { var IS_PRERENDER: boolean; } export declare class Timer extends Component { initMachine(props: timer.Props): VanillaMachine; initApi(): timer.Api; render(): void; } export declare function initTimer(doc?: HTMLElement | Document, selector?: string): void;