import { GoldPrice } from "../types/gold-price.interface";
import { IWebsite } from "../types/identity.interface";
type TModifiedGoldPrices = {
    tenTola: number | string;
    jewellery22k: number | string;
    gold9999Gm: number | string;
    gold9999Kg: number | string;
    kilobar995: number | string;
};
export declare function calculateModifiedGoldPrices(goldPrice: GoldPrice, webInfo: IWebsite, decimalPlace?: number): TModifiedGoldPrices;
export {};
