import { Supplier } from "../Supplier"; export interface Reference { supplier?: Supplier; reference?: string; returnId?: string; endToEndId?: string; instruction?: string; } export declare namespace Reference { const type: import("isly/dist/cjs/object").IslyObject; }