export interface DtoRedemptionInstructionInfo { country: string; deliveryType: string; language: string; redemptionInstructions: string; redemptionVideo: string; terms: string; } export declare function instanceOfDtoRedemptionInstructionInfo(value: object): value is DtoRedemptionInstructionInfo; export declare function DtoRedemptionInstructionInfoFromJSON(json: any): DtoRedemptionInstructionInfo; export declare function DtoRedemptionInstructionInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoRedemptionInstructionInfo; export declare function DtoRedemptionInstructionInfoToJSON(json: any): DtoRedemptionInstructionInfo; export declare function DtoRedemptionInstructionInfoToJSONTyped(value?: DtoRedemptionInstructionInfo | null, ignoreDiscriminator?: boolean): any;