export declare const DtoValueType: { readonly ValueTypeZend: "ZEND"; readonly ValueTypePrice: "PRICE"; readonly ValueTypeCost: "COST"; }; export type DtoValueType = typeof DtoValueType[keyof typeof DtoValueType]; export declare function instanceOfDtoValueType(value: any): boolean; export declare function DtoValueTypeFromJSON(json: any): DtoValueType; export declare function DtoValueTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoValueType; export declare function DtoValueTypeToJSON(value?: DtoValueType | null): any; export declare function DtoValueTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DtoValueType;