/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const AttributeType: { readonly Select: "select"; readonly MultiSelect: "multi_select"; readonly Text: "text"; }; export type AttributeType = typeof AttributeType[keyof typeof AttributeType]; export declare function instanceOfAttributeType(value: any): boolean; export declare function AttributeTypeFromJSON(json: any): AttributeType; export declare function AttributeTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeType; export declare function AttributeTypeToJSON(value?: AttributeType | null): any; export declare function AttributeTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): AttributeType;