import { ReactNode } from "react"; import { SoundType } from "../export-enums"; import { SoundManagement } from "../export-types"; declare type SoundWatcherChildProps = { toggle: () => void; set: (on: boolean) => void; }; declare type SoundOnceWatcherProps = { children: (value: SoundManagement[SoundType.ONCE] & SoundWatcherChildProps) => ReactNode; }; export declare function SoundOnceWatcher({ children }: SoundOnceWatcherProps): JSX.Element; declare type SoundBackgroundWatcherProps = { children: (value: SoundManagement[SoundType.BACKGROUND] & SoundWatcherChildProps) => ReactNode; }; export declare function SoundBackgroundWatcher({ children, }: SoundBackgroundWatcherProps): JSX.Element; export {}; //# sourceMappingURL=sound-watcher.d.ts.map