import { z } from "zod"; export declare const Delimiter: z.ZodString; export declare const LineTerminator: z.ZodString; export declare const QuoteChar: z.ZodString; export declare const NullSequence: z.ZodString; export declare const HeaderRows: z.ZodUnion, z.ZodArray]>; export declare const HeaderJoin: z.ZodString; export declare const CommentRows: z.ZodArray; export declare const CommentPrefix: z.ZodString; export declare const ColumnNames: z.ZodArray; export declare const JsonPointer: z.ZodString; export declare const RowType: z.ZodEnum<{ array: "array"; object: "object"; }>; export declare const SheetNumber: z.ZodNumber; export declare const SheetName: z.ZodString; export declare const TableName: z.ZodString; export type Delimiter = z.infer; export type LineTerminator = z.infer; export type QuoteChar = z.infer; export type NullSequence = z.infer; export type HeaderRows = z.infer; export type HeaderJoin = z.infer; export type CommentRows = z.infer; export type CommentPrefix = z.infer; export type ColumnNames = z.infer; export type JsonPointer = z.infer; export type RowType = z.infer; export type SheetNumber = z.infer; export type SheetName = z.infer; export type TableName = z.infer;