import { QuoteAndPost } from '../trading/index.js';
import { BridgeQuoteAndPost, CrossChainQuoteAndPost } from './types.js';
export declare function isBridgeQuoteAndPost(quote: CrossChainQuoteAndPost): quote is BridgeQuoteAndPost;
export declare function isQuoteAndPost(quote: CrossChainQuoteAndPost): quote is QuoteAndPost;
export declare function assertIsBridgeQuoteAndPost(quote: CrossChainQuoteAndPost): asserts quote is BridgeQuoteAndPost;
export declare function assertIsQuoteAndPost(quote: CrossChainQuoteAndPost): asserts quote is QuoteAndPost;
