export declare function isValidHandoffId(id: string): boolean; /** Throws if `id` is not a safe handoff id (before any file I/O). */ export declare function assertValidHandoffId(id: string): string; /** Generate a unique-ish id: `ho--`. */ export declare function newHandoffId(now?: Date): string;