export * from "./client"; /** Low-level API for interacting with the bridge contract. */ export * as bridge from "./bridge"; /** Methods for interacting with the app as an app owner. */ export * as appOwner from "./owner"; /** * Convert a `number` to a `bigint` with the specified number of decimals, * scaled with the number of decimals. If there is loss of precision, the * fractional part will be lost. * * @param amount amount in denomination units * @param decimals number of decimal places * @returns amount in quantum units for the given decimals */ export declare function floatToScaledBigIntLossy(amount: number, decimals: number): bigint;