/** Contract of service */
export interface Contract {
    /** Is this contract currently active or not ? */
    active: boolean;
    /** Date the contract was created on */
    date: string;
    /** Name of of the contract */
    name: string;
    /** URL you can download the contract at */
    pdf: string;
    /** Full text of the contract */
    text: string;
}
//# sourceMappingURL=Contract.d.ts.map