import { LocaleId } from '@moebius/fluent';
import { Context } from 'grammy';
export declare type LocaleNegotiator<ContextType extends Context = Context> = (context: ContextType) => (LocaleId | PromiseLike<LocaleId>);
export declare function defaultLocaleNegotiator(context: Context): string;
