import { HeliusPriorityLevel } from './heliusPriorityFeeMethod';
export type DriftMarketInfo = {
    marketType: string;
    marketIndex: number;
};
export type DriftPriorityFeeLevels = {
    [key in HeliusPriorityLevel]: number;
} & {
    marketType: 'perp' | 'spot';
    marketIndex: number;
};
export type DriftPriorityFeeResponse = DriftPriorityFeeLevels[];
export declare function fetchDriftPriorityFee(url: string, marketTypes: string[], marketIndexes: number[]): Promise<DriftPriorityFeeResponse>;
//# sourceMappingURL=driftPriorityFeeMethod.d.ts.map