/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Serializer for a single Choice field * @export * @interface PromptChoice */ export interface PromptChoice { /** * * @type {string} * @memberof PromptChoice */ value: string; /** * * @type {string} * @memberof PromptChoice */ label: string; } /** * Check if a given object implements the PromptChoice interface. */ export declare function instanceOfPromptChoice(value: object): value is PromptChoice; export declare function PromptChoiceFromJSON(json: any): PromptChoice; export declare function PromptChoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): PromptChoice; export declare function PromptChoiceToJSON(json: any): PromptChoice; export declare function PromptChoiceToJSONTyped(value?: PromptChoice | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PromptChoice.d.ts.map