/** * synap keys — Manage pod API keys * * Subcommands: rotate */ export interface KeysRotateOpts { podUrl?: string; } export declare function keysRotate(opts: KeysRotateOpts): Promise;