/**
 * A one character code identifying whether the Fund based renewal commission is to be waived.
 * - Tag: 497
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const FundRenewWaiv: Readonly<{
    /** No */
    readonly No: "N";
    /** Yes */
    readonly Yes: "Y";
}>;
export type FundRenewWaiv = (typeof FundRenewWaiv)[keyof typeof FundRenewWaiv];
