/**
 * Indicates the method of preallocation.
 * - Tag: 591
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PreallocMethod: Readonly<{
    /** Pro rata */
    readonly ProRata: "0";
    /** Do not pro-rata - discuss first */
    readonly DoNotProRata: "1";
}>;
export type PreallocMethod = (typeof PreallocMethod)[keyof typeof PreallocMethod];
