export interface PiteasQuoteRequestParams {
    tokenInAddress: string;
    tokenInChainId: number;
    tokenOutAddress: string;
    tokenOutChainId: number;
    amount: string;
    allowedSlippage: number;
    account?: string;
}
export interface PiteasSuccessQuoteResponse {
    destAmount: string;
    gasUseEstimate: number;
    methodParameters: PiteasMethodParameters;
}
export interface PiteasMethodParameters {
    calldata: string;
    value: string;
}
