/**
 * Number of shares in numeric or relative size.
 * - Tag: 27
 * - FIX Specification type: String
 * - FIX Specification version: FIX42
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const IOIShares: Readonly<{
    /** Large */
    readonly Large: "L";
    /** Medium */
    readonly Medium: "M";
    /** Small */
    readonly Small: "S";
}>;
export type IOIShares = (typeof IOIShares)[keyof typeof IOIShares];
