import { ConfigState, ConfigValue } from "./ConfigTypes";
declare const useConfig: () => {
    setConfig: (key: keyof ConfigState, value: ConfigValue) => void;
    getConfig: <T extends "formatOptions" | "currentLocale" | "minYear" | "maxYear" | "theme" | "weekDayLabelSize">(key: T) => ConfigState[T];
};
export default useConfig;
