export type SupplyCollateralParams = {
    amount: string;
    symbol: string;
};
export declare const supplyCollateral: ({ amount, symbol, }: SupplyCollateralParams) => Promise<string>;
