import { isoly } from "isoly"; import { Rail } from "../../Rail"; import { Supplier } from "../../Supplier"; import { Balance } from "../Balance"; import { Category } from "./Category"; export interface Fetchable { label: string; supplier: Supplier; reference: string; currencies: isoly.Currency[]; type: Category; rail: Rail.Address[]; balance: Balance; } export declare namespace Fetchable { const type: import("isly/dist/cjs/object").IslyObject; }