import { ILocalizedStrings } from '../controls/LocalizedStrings';
import { IUserSettings } from '../models';
/**
 * A hook for user settings.
 * @returns The user settings.
 */
export declare const useUserSettings: () => IUserSettings;
/**
 * Hook keeping track of the selected radix for converting numeric values to strings.
 * @returns The selected numeric radix.
 */
export declare const useNumericRadix: () => number;
/**
 * Hook keeping track of the selected radix for converting numeric values to strings.
 */
export declare const useMaxDataBytes: () => number;
/**
 * Hook keeping track of the selected language.
 * @returns The selected language.
 */
export declare const useLanguage: () => string;
/**
 * Hook keeping track of localized strings.
 * @returns The localized strings object.
 */
export declare const useLocalizedStrings: () => ILocalizedStrings;
/**
 * Hook keeping track of recent project files.
 */
export declare const useRecentProjectFiles: () => string[];
