export interface StartCounterDeps { accountId?: string; tmpDir?: string; existsSync?: (p: string) => boolean; readFileSync?: (p: string, enc: 'utf8') => string; writeFileSync?: (p: string, d: string, enc: 'utf8') => void; log?: (line: string) => void; } export declare function bumpStartCounter(deps?: StartCounterDeps): void; //# sourceMappingURL=start-counter.d.ts.map