export declare function runCmd({ agentName, model, googleApiKey, googleCloudProject, googleCloudRegion, }: {
    agentName: string;
    model?: string;
    googleApiKey?: string;
    googleCloudProject?: string;
    googleCloudRegion?: string;
}): Promise<void>;
