/**
 * Indicates order settlement period. Absence of this field is interpreted as Regular. Regular is defined as the default settlement period for the particular security on the exchange of execution.
 * - Tag: 63
 * - FIX Specification type: char
 * - FIX Specification version: FIX42
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SettlmntTyp: Readonly<{
    /** Regular */
    readonly Regular: "0";
    /** Cash */
    readonly Cash: "1";
    /** Next Day */
    readonly NextDay: "2";
    /** T+2 */
    readonly TPlus2: "3";
    /** T+3 */
    readonly TPlus3: "4";
    /** T+4 */
    readonly TPlus4: "5";
    /** Future */
    readonly Future: "6";
    /** When Issued */
    readonly WhenAndIfIssued: "7";
    /** Sellers Option */
    readonly SellersOption: "8";
    /** T+ 5 */
    readonly TPlus5: "9";
}>;
export type SettlmntTyp = (typeof SettlmntTyp)[keyof typeof SettlmntTyp];
