import { User } from "./_index";
import { BankValuationRequest } from "./BankValuationRequest";
export declare const BankValuationAction: {
    readonly APPROVAL: "approval";
    readonly REJECTION: "rejection";
    readonly ISSUED_FOR_FREE: "issued_for_free";
};
export type BankValuationActionType = (typeof BankValuationAction)[keyof typeof BankValuationAction];
export declare class BankValuationResult {
    id: string;
    refId: number;
    action: BankValuationActionType;
    doneBy: User;
    bankValuationRequest: BankValuationRequest;
    dealDriveEstimatedPrice?: number;
    rejectionReason?: string;
    approvalComments?: string;
    approvedValuation?: number;
    certificateUrl?: string;
    createdAt: Date;
    updatedAt: Date;
}
