export declare function getQuote(tokenInAddress: string, tokenInChainId: number, tokenOutAddress: string, tokenOutChainId: number, amount: string, type?: string, protocols?: string, signal?: AbortSignal): Promise<{
    route: any;
    amountOut: any;
    priceImpact: string;
    gasEstimate: any;
    protocols: any;
} | null>;
export interface QuoteResponse {
    route: any[];
    amountOut: string;
    priceImpact: string;
    gasEstimate: string;
    protocols: any[];
}
