export declare class UKFpsTracingData {
    /**
    * The FPS trace number. This is a unique identifier assigned to transfers processed by [FPS](https://www.bankofengland.co.uk/payment-systems/services/faster-payments-service).
    */
    "fpid": string;
    /**
    * **ukFps**
    */
    "type": UKFpsTracingData.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 UKFpsTracingData {
    enum TypeEnum {
        UkFps = "ukFps"
    }
}
