import type { DtoInputMask } from './DtoInputMask'; import type { DtoRequiredFieldLabel } from './DtoRequiredFieldLabel'; import type { DtoRedemptionInstruction } from './DtoRedemptionInstruction'; export interface DtoBrandInfo { brand: string; brandBigImage: string; brandColor: string; brandGiftImage: string; brandInfoPdf: string; brandLogo: string; brandLogoExtension: string; brandName: string; description: string; inputMasks: Array; redemptionInstructions: Array; requiredFieldsLabels: Array; } export declare function instanceOfDtoBrandInfo(value: object): value is DtoBrandInfo; export declare function DtoBrandInfoFromJSON(json: any): DtoBrandInfo; export declare function DtoBrandInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoBrandInfo; export declare function DtoBrandInfoToJSON(json: any): DtoBrandInfo; export declare function DtoBrandInfoToJSONTyped(value?: DtoBrandInfo | null, ignoreDiscriminator?: boolean): any;