/** * StorybookToolsNudge — mid-run reminder when the user asked to run/build * Storybook but no storybook-shaped exec has run yet. * * Soft: max 1 fire. Pairs with evaluateInventedStorybookCompletionGate. */ export declare const STORYBOOK_TOOLS_NUDGE_MAX_ATTEMPTS = 1; export interface StorybookToolsNudgeRequest { userText: string; toolCallsByName: Record; messages?: Array<{ role?: string; content?: unknown; }>; totalToolCalls: number; attempts: number; } export type StorybookToolsNudgeResult = { fire: false; } | { fire: true; correction: string; }; export declare function evaluateStorybookToolsNudge(request: StorybookToolsNudgeRequest): StorybookToolsNudgeResult; //# sourceMappingURL=storybook-tools-nudge.d.ts.map