import { z } from "zod"; export declare const RowPrimaryKeyError: z.ZodObject<{ resourceName: z.ZodOptional; type: z.ZodLiteral<"row/primaryKey">; rowNumber: z.ZodNumber; columnNames: z.ZodArray; }, z.core.$strip>; export declare const RowUniqueKeyError: z.ZodObject<{ resourceName: z.ZodOptional; type: z.ZodLiteral<"row/uniqueKey">; rowNumber: z.ZodNumber; columnNames: z.ZodArray; }, z.core.$strip>; export declare const RowError: z.ZodDiscriminatedUnion<[z.ZodObject<{ resourceName: z.ZodOptional; type: z.ZodLiteral<"row/primaryKey">; rowNumber: z.ZodNumber; columnNames: z.ZodArray; }, z.core.$strip>, z.ZodObject<{ resourceName: z.ZodOptional; type: z.ZodLiteral<"row/uniqueKey">; rowNumber: z.ZodNumber; columnNames: z.ZodArray; }, z.core.$strip>], "type">; export type RowPrimaryKeyError = z.infer; export type RowUniqueKeyError = z.infer; export type RowError = z.infer;