export declare const commandCloudSqlProxy: import("../../core/types").CommandDef<{
  readonly envComponent: {
    readonly type: "string";
    readonly message: "environment:component";
    readonly positional: true;
    readonly choices: () => Promise<string[]>;
  };
  readonly localPort: {
    readonly type: "number";
    readonly message: "Local port: ";
    readonly default: 54320;
  };
}>;