export type SlippageToleranceMode = 'Auto' | 'Custom';
export type SlippageRating = 'low' | 'high' | 'very-high';
export declare const ratingToColor: {
    readonly 'very-high': "red11";
    readonly high: "amber11";
    readonly low: undefined;
};
export declare const getSlippageRating: (slippage: string) => SlippageRating;
//# sourceMappingURL=slippage.d.ts.map