import * as i from '../interfaces'; export declare function enumStringToValue(enumRef: any, value: string): E; export declare class TaxOptions implements i.TaxOptionsInterface { label: string; percentageMultiplier: number; initialAmount: number; taxRateId: string; static fromProto(proto: any): TaxOptions; constructor(kwargs?: i.TaxOptionsInterface); toApiJson(): object; }