type Manifest = Record; export type ThemeFields = Record | undefined; /** * Extract path-bearing theme image entries from manifest.theme.images. * Keys are normalized as "theme/images/" and values are resolved * from the manifest directory context, matching conventions used by other groups. */ export declare function themeFields(context: string, manifest: Manifest): ThemeFields; export {};