import * as beet from '@convergence-rfq/beet'; export type AssetIdentifierRecord = { Leg: { legIndex: number; }; Quote: void; }; export type AssetIdentifier = beet.DataEnumKeyAsKind; export declare const isAssetIdentifierLeg: (x: AssetIdentifier) => x is { __kind: "Leg"; } & Omit<{ legIndex: number; }, "void"> & { __kind: 'Leg'; }; export declare const isAssetIdentifierQuote: (x: AssetIdentifier) => x is { __kind: "Quote"; } & Omit & { __kind: 'Quote'; }; export declare const assetIdentifierBeet: beet.FixableBeet>;