import { TwirpContext, TwirpServer } from 'twirp-ts'; import { TimerMessage } from './timer.js'; import { Empty } from '../../../google/protobuf/empty.js'; export interface TimerTwirp { Wait(ctx: T, request: TimerMessage): Promise; } export declare enum TimerMethod { Wait = "Wait" } export declare const TimerMethodList: TimerMethod[]; export declare function createTimerServer(service: TimerTwirp): TwirpServer>>, T>; //# sourceMappingURL=timer.twirp.d.ts.map