import { Model } from '../model'; declare enum FacilityType { Bank = "bank", Cex = "cex", Dex = "dex" } export declare type Agreement = Model & { billingAccountId: string; facilityId: string; pdf?: Uint8Array; }; export declare type Facility = Model & { applicationId?: string; organizationId?: string; userId?: string; type: FacilityType; name: string; description: string; agreements?: Agreement[]; }; export {}; //# sourceMappingURL=facility.d.ts.map