interface TrimPriceAmountType { amount: string; minimumPositiveDecimals: number; } export declare const trimAmountDecimals: ({ amount, minimumPositiveDecimals }: TrimPriceAmountType) => string; export {};