import { Amount } from "../Amount"; export interface Exchange { rate: number; to?: Amount; from?: Amount; quote?: string; } export declare namespace Exchange { const type: import("isly/dist/cjs/object").IslyObject; }