import { type ReactNode } from "react"; import type { AppServices } from "../bootstrap/composition-root.js"; import { type Theme } from "../rendering/theme.js"; export declare function ServicesProvider(props: { services: AppServices; children: ReactNode; }): ReactNode; export declare function useServices(): AppServices; export declare function useTheme(): Theme;