/**
 * Indicates whether single sided quotes are allowed.
 * - Tag: 2559
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const QuoteSideIndicator: Readonly<{
    /** Single sided quotes are not allowed */
    readonly No: "N";
    /** Single sided quotes are allowed */
    readonly Yes: "Y";
}>;
export type QuoteSideIndicator = (typeof QuoteSideIndicator)[keyof typeof QuoteSideIndicator];
