import { Application } from '../applications/application.entity';
export declare class Contract {
    id: string;
    application: Application;
    status: string;
    terms: string;
    payment_amount: number;
    contract_length: string;
    created_at: Date;
    updated_at: Date;
}
