import { z } from 'zod'; import { TableAutomationStatus, TableAutomationTrigger } from '../table'; import { TableWebhookEventType } from '../table-webhook'; export declare const CreateTableRequest: z.ZodObject<{ projectId: z.ZodString; name: z.ZodString; fields: z.ZodOptional>; }, z.core.$strip>>>; externalId: z.ZodString; }, z.core.$strip>>>; externalId: z.ZodOptional; folderId: z.ZodOptional; folderName: z.ZodOptional; }, z.core.$strip>; export type CreateTableRequest = z.infer; export declare const ExportTableResponse: z.ZodObject<{ fields: z.ZodArray>; rows: z.ZodArray>; name: z.ZodString; }, z.core.$strip>; export type ExportTableResponse = z.infer; export declare const CreateTableWebhookRequest: z.ZodObject<{ events: z.ZodArray>; webhookUrl: z.ZodString; flowId: z.ZodString; }, z.core.$strip>; export type CreateTableWebhookRequest = z.infer; export declare const UpdateTableRequest: z.ZodObject<{ name: z.ZodOptional; trigger: z.ZodOptional>; status: z.ZodOptional>; folderId: z.ZodOptional>; }, z.core.$strip>; export type UpdateTableRequest = z.infer; export declare const ListTablesRequest: z.ZodObject<{ projectId: z.ZodString; limit: z.ZodOptional>; cursor: z.ZodOptional; name: z.ZodOptional; externalIds: z.ZodPipe, z.ZodOptional>>; folderId: z.ZodOptional; }, z.core.$strip>; export type ListTablesRequest = z.infer; export declare const CountTablesRequest: z.ZodObject<{ projectId: z.ZodString; folderId: z.ZodOptional; }, z.core.$strip>; export type CountTablesRequest = z.infer; //# sourceMappingURL=tables.dto.d.ts.map