///
import { Unpacked } from './helpers';
export type ManifestV2 = Omit & Partial>;
export type ManifestV3 = Omit & Partial>;
export type ContentScript = Unpacked;
export type WebAccessibleResource = Unpacked;
export declare function isMV2(m?: chrome.runtime.ManifestBase): m is chrome.runtime.ManifestV2;
export declare function isMV3(m?: chrome.runtime.ManifestBase): m is chrome.runtime.ManifestV3;