/** * 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 AttributeFieldType: { readonly Performance: "performance"; readonly Specification: "specification"; readonly Dimension: "dimension"; readonly Other: "other"; }; export type AttributeFieldType = typeof AttributeFieldType[keyof typeof AttributeFieldType]; export declare function instanceOfAttributeFieldType(value: any): boolean; export declare function AttributeFieldTypeFromJSON(json: any): AttributeFieldType; export declare function AttributeFieldTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeFieldType; export declare function AttributeFieldTypeToJSON(value?: AttributeFieldType | null): any; export declare function AttributeFieldTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): AttributeFieldType;