import { z } from 'zod'; import type { BinarySchema } from '../../../../schema/index.js'; import type { WithValidate } from '../utils.js'; import type { ZodParserOptions } from './types.js'; import type { WithDefault, WithEncoding, WithOptional } from './utils.js'; export type BinaryZodParser = WithEncoding>>>>; export declare const binaryZodParser: (schema: BinarySchema, options?: ZodParserOptions) => z.ZodTypeAny;