/**
 * Indicates whether or not message is being sent as a result of a subscription request or not.
 * - Tag: 325
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const UnsolicitedIndicator: Readonly<{
    /** Message is being sent as a result of a prior request */
    readonly MessageIsBeingSentAsAResultOfAPriorRequest: "N";
    /** Message is being sent unsolicited */
    readonly MessageIsBeingSentUnsolicited: "Y";
}>;
export type UnsolicitedIndicator = (typeof UnsolicitedIndicator)[keyof typeof UnsolicitedIndicator];
