export declare class UpdateProductOptionRequest { 'required'?: boolean; 'optionLabel'?: string; 'displayOrder'?: number; 'minimumCharacters'?: number; 'maximumCharacters'?: number; 'allowSpaces'?: boolean; 'onlyStartsWith'?: UpdateProductOptionRequestOnlyStartsWithEnum; 'onlyEndsWith'?: UpdateProductOptionRequestOnlyEndsWithEnum; 'onlyContains'?: UpdateProductOptionRequestOnlyContainsEnum; 'errorMessage'?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare enum UpdateProductOptionRequestOnlyStartsWithEnum { None = "NONE", Letter = "LETTER", Digit = "DIGIT", Both = "BOTH" } export declare enum UpdateProductOptionRequestOnlyEndsWithEnum { None = "NONE", Letter = "LETTER", Digit = "DIGIT", Both = "BOTH" } export declare enum UpdateProductOptionRequestOnlyContainsEnum { None = "NONE", Letter = "LETTER", Digit = "DIGIT", Both = "BOTH" }