/**
 * Meeting command for claudes-office
 * This command generates AI-powered meetings with transcripts and minutes
 */
import { MeetingOptions } from '../types/commands';
/**
 * Generate a meeting with the specified options
 * @param options - Meeting generation options
 */
export declare function executeMeeting(options?: MeetingOptions): Promise<void>;
