import * as beet from '@convergence-rfq/beet'; import { PriceQuote } from './PriceQuote'; export type QuoteRecord = { Standard: { priceQuote: PriceQuote; legsMultiplierBps: beet.bignum; }; FixedSize: { priceQuote: PriceQuote; }; }; export type Quote = beet.DataEnumKeyAsKind; export declare const isQuoteStandard: (x: Quote) => x is { __kind: "Standard"; } & Omit<{ priceQuote: PriceQuote; legsMultiplierBps: beet.bignum; }, "void"> & { __kind: 'Standard'; }; export declare const isQuoteFixedSize: (x: Quote) => x is { __kind: "FixedSize"; } & Omit<{ priceQuote: PriceQuote; }, "void"> & { __kind: 'FixedSize'; }; export declare const quoteBeet: beet.FixableBeet>;