import type { VerifierState } from "./types.js"; export interface StatusUI { formatStatus: (state: VerifierState) => string | undefined; formatWidget: (state: VerifierState) => string[] | undefined; formatWorkingIndicator: (state: VerifierState) => { frames: string[]; intervalMs: number; } | undefined; formatWorkingMessage: (state: VerifierState) => string | undefined; } export declare function createStatusUI(): StatusUI; //# sourceMappingURL=status-ui.d.ts.map