/** The aspect ratio of the output image. With `auto`, the model picks an aspect ratio based on the inputs. */ export declare const GptImage2RequestAspectRatio: { readonly Auto: "auto"; readonly One1: "1:1"; readonly Four5: "4:5"; readonly Five4: "5:4"; readonly Three4: "3:4"; readonly Four3: "4:3"; readonly Two3: "2:3"; readonly Three2: "3:2"; readonly One2: "1:2"; readonly Two1: "2:1"; readonly Nine16: "9:16"; readonly Sixteen9: "16:9"; readonly TwentyOne9: "21:9"; readonly One3: "1:3"; readonly Three1: "3:1"; }; export type GptImage2RequestAspectRatio = (typeof GptImage2RequestAspectRatio)[keyof typeof GptImage2RequestAspectRatio];