export declare class EstimationTrackingData {
    /**
    * The estimated time the beneficiary should have access to the funds.
    */
    "estimatedArrivalTime": Date;
    /**
    * The type of tracking event.   Possible values:   - **estimation**: the estimated date and time of when the funds will be credited has been determined.
    */
    "type": EstimationTrackingData.TypeEnum;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare namespace EstimationTrackingData {
    enum TypeEnum {
        Estimation = "estimation"
    }
}
