import { type MediaFeatureFlags } from '@atlaskit/media-common'; export declare const setLocalFeatureFlag: (key: keyof MediaFeatureFlags, value: number | boolean | string | Object) => void; export declare const clearLocalFeatureFlag: (key: keyof MediaFeatureFlags) => void; export declare const clearAllLocalFeatureFlags: () => void; export declare const getMediaFeatureFlags: () => MediaFeatureFlags;