export declare const DtoPromoStatus: { readonly PromoStatusActive: "active"; readonly PromoStatusExpired: "expired"; readonly PromoStatusPending: "pending"; }; export type DtoPromoStatus = typeof DtoPromoStatus[keyof typeof DtoPromoStatus]; export declare function instanceOfDtoPromoStatus(value: any): boolean; export declare function DtoPromoStatusFromJSON(json: any): DtoPromoStatus; export declare function DtoPromoStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoPromoStatus; export declare function DtoPromoStatusToJSON(value?: DtoPromoStatus | null): any; export declare function DtoPromoStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): DtoPromoStatus;