/**
 * Prompt templates for meeting generation
 */
import { MeetingType } from '../types/commands';
/**
 * Meeting options for prompt generation
 */
export interface MeetingPromptOptions {
    /** Title of the meeting */
    title: string;
    /** Type of meeting */
    type: MeetingType;
    /** List of participants */
    participants: string[];
    /** Meeting agenda items */
    agenda: string[];
    /** Duration in minutes */
    duration: number;
    /** Meeting date */
    date: string;
    /** Additional context */
    additionalContext?: string;
}
/**
 * Get the appropriate prompt for a meeting type
 * @param options - Meeting options
 * @returns Prompt for the meeting
 */
export declare function getMeetingPrompt(options: MeetingPromptOptions): Promise<string>;
