import { AbstractEntity } from '../../abstractEntity'; export declare enum PutQuoteResultFields { COLUMN_LINK = "link", COLUMN_REFERENCE = "reference", COLUMN_STATUS = "status" } export declare type PutQuoteResultType = { [PutQuoteResultFields.COLUMN_LINK]: string; [PutQuoteResultFields.COLUMN_REFERENCE]: string; [PutQuoteResultFields.COLUMN_STATUS]: string; }; export declare class PutQuoteResult extends AbstractEntity { #private; constructor(quoteRequestResponse: PutQuoteResultType); get link(): string; get reference(): string; get status(): string; toJSON(): PutQuoteResultType; }