export declare class PriceFormatOptions { defaults: { minValue: string; maxValue: string; prefix: string; suffix: string; centsSeparator: string; thousandsSeparator: string; limit: boolean; centsLimit: number; clearPrefix: boolean; clearSuffix: boolean; allowNegative: boolean; insertPlusSign: boolean; cssclass: string; placeholder: string; }; current: {}; options: {}; constructor(options: any); updateOptions(options: any): void; getOptions(): {}; } export interface PriceFormatOptionsModel { minValue?: string; maxValue?: string; prefix?: string; suffix?: string; centsSeparator?: string; thousandsSeparator?: string; limit?: boolean; centsLimit?: number; clearPrefix?: boolean; clearSuffix?: boolean; allowNegative?: boolean; insertPlusSign?: boolean; cssclass?: string; placeholder?: string; }