import { z } from "zod"; //#region src/model/bytes.d.ts declare const DocxBytesSchema: z.ZodCustom, Uint8Array>; declare const PptxBytesSchema: z.ZodCustom, Uint8Array>; declare const XlsxBytesSchema: z.ZodCustom, Uint8Array>; declare const PdfBytesSchema: z.ZodCustom, Uint8Array>; declare const OdtBytesSchema: z.ZodCustom, Uint8Array>; declare const OdsBytesSchema: z.ZodCustom, Uint8Array>; declare const OdpBytesSchema: z.ZodCustom, Uint8Array>; declare const OdgBytesSchema: z.ZodCustom, Uint8Array>; declare const DocBytesSchema: z.ZodCustom, Uint8Array>; declare const XlsBytesSchema: z.ZodCustom, Uint8Array>; declare const PptBytesSchema: z.ZodCustom, Uint8Array>; declare const MarkdownBytesSchema: z.ZodCustom, Uint8Array>; declare const CsvBytesSchema: z.ZodCustom, Uint8Array>; declare const SvgBytesSchema: z.ZodCustom, Uint8Array>; declare function requireArrayBufferBytes(bytes: Uint8Array): Uint8Array; //#endregion export { CsvBytesSchema, DocBytesSchema, DocxBytesSchema, MarkdownBytesSchema, OdgBytesSchema, OdpBytesSchema, OdsBytesSchema, OdtBytesSchema, PdfBytesSchema, PptBytesSchema, PptxBytesSchema, SvgBytesSchema, XlsBytesSchema, XlsxBytesSchema, requireArrayBufferBytes };