/**
 * Indicates the type of Quote Request being generated
 * - Tag: 303
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const QuoteRequestType: Readonly<{
    /** Manual */
    readonly Manual: 1;
    /** Automatic */
    readonly Automatic: 2;
    /** Confirm quote */
    readonly ConfirmQuote: 3;
}>;
export type QuoteRequestType = (typeof QuoteRequestType)[keyof typeof QuoteRequestType];
