interface ThemerProps { overrideTheme?: Partial; children: any; } import type { Theme } from "./types"; declare function Themer(props: ThemerProps): import("react/jsx-runtime").JSX.Element; export default Themer;