export type ToolbarLocale = 'en' | 'no'; declare const translations: { en: { more: string; clearSelection: string; selected: string; }; no: { more: string; clearSelection: string; selected: string; }; }; export type ToolbarTranslations = (typeof translations)['en']; export declare function useToolbarTranslations(locale?: ToolbarLocale): ToolbarTranslations; export declare function formatSelectionLabel(count: number, t: ToolbarTranslations): string; export {};