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