import { z } from 'zod';
import { playSoundOptionsSchema } from './Sound.schema';

export type PlaySoundOptions = z.infer<typeof playSoundOptionsSchema>;
