import { type ThemeFields } from './theme-fields'; import { type SemanticFields } from './semantic-fields'; export interface ManifestFields { html: Record; icons: Record; json: Record; locales?: string[] | undefined; scripts: Record; web_accessible_resources?: Array> | undefined; theme?: ThemeFields; semantic?: SemanticFields; } export declare function getManifestFieldsData({ manifestPath, browser }: { manifestPath: string; browser?: string; }): { html: Record; icons: Record; json: Record; locales: string[] | undefined; scripts: Record; web_accessible_resources: any; theme: ThemeFields; semantic: SemanticFields; };