/**
 * For CIV - A one character code identifying whether Cancellation rights/Cooling off period applies.
 * - Tag: 480
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const CancellationRights: Readonly<{
    /** Yes */
    readonly Yes: "Y";
    /** No - Execution Only */
    readonly NoExecutionOnly: "N";
    /** No - Waiver agreement */
    readonly NoWaiverAgreement: "M";
    /** No - Institutional */
    readonly NoInstitutional: "O";
}>;
export type CancellationRights = (typeof CancellationRights)[keyof typeof CancellationRights];
