export interface SendOptions { since?: string; model?: 'sonnet' | 'opus' | 'haiku'; dryRun?: boolean; limit?: string; noEmail?: boolean; from?: string; previewUrl?: string; } export interface SendResult { updateId: string; url?: string; preview: { subject: string; body: string; }; commitsCount: number; emailDelivered?: boolean; emailReason?: string; } export declare function sendCommand(opts?: SendOptions): Promise;