import type * as z from 'zod'; import { type BrowserSchema, type MaskSchema, type ShotItemSchema, type ShotModeSchema } from './schemas'; export type BrowserName = z.infer; export type ShotMode = z.infer; export type Mask = z.infer; export type ShotItem = z.infer; export type ExtendedShotItem = ShotItem & { uniqueName: string; hash: string; };