import { Theme } from "./types";
export declare const useTheme: (theme: Theme) => {
    isDark: boolean;
    toggleMode: () => void;
};
