import { RouteQuote, type ChainType, type PayOrder } from "@coin-voyage/shared/types"; interface PayOrderQuotesProps { payOrder: PayOrder | undefined; address: string | undefined; chainType: ChainType | undefined; } export declare function usePayOrderQuotes({ payOrder, address, chainType }: PayOrderQuotesProps): { quotes: RouteQuote[] | null | undefined; isLoading: boolean; refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise>; }; export {};