import type { InterviewsListArgs, InterviewsGetArgs } from "../args.js"; export interface InterviewSummary { id: number; workout_id: number; created_at: string; coach_confidence: string; athlete_reflection_summary: string; } export interface InterviewDetail extends InterviewSummary { coach_notes: string; } export declare function queryInterviews(args: InterviewsListArgs): Promise; export declare function queryInterviewById(interviewId: number): Promise; export declare function listInterviews(args: InterviewsListArgs): Promise; export declare function getInterview(args: InterviewsGetArgs): Promise; export declare function runInterviews(args: InterviewsListArgs | InterviewsGetArgs): Promise;