export declare const commandProjectRestoreDb: import("../../core").CommandDef<{
  readonly source: {
    readonly type: "string";
    readonly message: "Source instance? 🤔 ";
    readonly choices: () => Promise<string[]>;
  };
  readonly target: {
    readonly type: "string";
    readonly message: "target env? 🤔 ";
    readonly choices: () => Promise<{
      name: string;
      value: string;
    }[]>;
  };
  readonly confirmInstance: {
    readonly type: "string";
    readonly message: "confirm: ";
  };
}>;