import { Installment } from '@comparaonline/offers-models'; import { MainAttributeProps } from '../types'; export declare const PATH_SEPARATOR = "."; export declare const selectDefaultInstallment: (installments: Installment[], defaultInstallment: number) => Installment; export declare const getItemByPath: (object: object, path: string, separator?: string) => any; export declare const getInstallmentByPathAccessor: (mainAttribute: MainAttributeProps) => any; export declare const getAmountInUf: (amount: number, second?: number) => { amountInUf: number; secondInUf: number; };