import type { PlaybackConfig } from '../../../bundles/Types'; import type { ContextWithState } from '../../Types'; export type PlaybackConfigAtom = ReturnType; export declare const createPlaybackConfigAtom: (context: ContextWithState, options: PlaybackConfig | undefined) => import("../../core/state/Types").StateAtom<{ autoplay: boolean; muted: boolean; }, {}>;