import type { Theme } from "../.."; import type { UseThemeProps } from "./types"; /** * `useTheme()` * * This hook can be used to get a specific theme, given its id. * If theme id is not specified, it will return all themes. */ declare function useTheme(themeFile: Theme.GriddoTheme, props: UseThemeProps): Array | Theme.Theme; export { useTheme };