import type { KyInstance } from 'ky';
export interface GetBestPriceOutput {
    askPrice: number;
    bidPrice: number;
}
type GetBestPrice = () => Promise<GetBestPriceOutput>;
export declare const createGetBestPrice: (instance: KyInstance) => GetBestPrice;
export {};
//# sourceMappingURL=get-best-price.d.ts.map