import { z } from 'zod';
import { soundNameSchema } from './Sounds.schema';
export type SoundName = z.infer<typeof soundNameSchema>;
