/** A contract */
export interface Contract {
    /** Terms of the contract */
    content: string;
    /** Name of the contract */
    name: string;
    /** URL to download the contract */
    url: string;
}
//# sourceMappingURL=Contract.d.ts.map