/**
 * Indication of how a trade was verified.
 * - Tag: 1931
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const VerificationMethod: Readonly<{
    /** Non-electronic */
    readonly NonElectronic: 0;
    /** Electronic */
    readonly Electronic: 1;
}>;
export type VerificationMethod = (typeof VerificationMethod)[keyof typeof VerificationMethod];
