/** * Get the currently active story ID */ export declare function getCurrentStoryId(): string | null; /** * Set the currently active story ID */ export declare function setCurrentStoryId(storyId: string): void; /** * Clear the current story */ export declare function clearCurrentStory(): void; /** * Use command - set active story */ export declare function useCommand(storyId: string | null): void; /** * Resolve story ID - use provided ID or fall back to current */ export declare function resolveStoryId(providedId: string | undefined): string;