/** * 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 AddressType: { readonly Shipping: "shipping"; readonly Billing: "billing"; readonly ShippingBilling: "shipping-billing"; readonly Others: "others"; }; export type AddressType = typeof AddressType[keyof typeof AddressType]; export declare function instanceOfAddressType(value: any): boolean; export declare function AddressTypeFromJSON(json: any): AddressType; export declare function AddressTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddressType; export declare function AddressTypeToJSON(value?: AddressType | null): any; export declare function AddressTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): AddressType;