import type { PackageIntl } from "../i18n"; import type { Service } from "../Service"; import type { UseServiceOptions } from "./hooks"; export interface PackageContextMethods { getService: (packageName: string, interfaceName: string, options: UseServiceOptions) => Service; getServices: (packageName: string, interfaceName: string) => Service[]; getProperties: (packageName: string) => Readonly>; /** * NOTE: This is reactive during development for hot reloading support. */ getIntl(packageName: string): PackageIntl; } export declare const PackageContext: import("react").Context;