export declare function createWorkoutPrompt(): Promise<{
    messages: {
        role: "assistant";
        content: {
            type: "text";
            text: string;
        };
    }[];
}>;
