/**
 * Method for price quotation
 * - Tag: 1196
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PriceQuoteMethod: Readonly<{
    /** Standard, money per unit of a physical */
    readonly Standard: "STD";
    /** Index */
    readonly Index: "INX";
    /** Interest rate Index */
    readonly InterestRateIndex: "INT";
    /** Percent of Par */
    readonly PercentOfPar: "PCTPAR";
}>;
export type PriceQuoteMethod = (typeof PriceQuoteMethod)[keyof typeof PriceQuoteMethod];
