import { Theme } from "../../types/style-context"; declare type UseThemeReturn = { theme: Theme; selectStyles: any; filterOption: (_: any) => (Option: any) => boolean; }; declare const useTheme: (component?: string, styleContext?: import("../../types/style-context").default) => UseThemeReturn; export default useTheme;