import { z } from 'zod'; export declare enum TableAutomationTrigger { ON_NEW_RECORD = "ON_NEW_RECORD", ON_UPDATE_RECORD = "ON_UPDATE_RECORD" } export declare enum TableAutomationStatus { ENABLED = "ENABLED", DISABLED = "DISABLED" } export declare const Table: z.ZodObject<{ name: z.ZodString; folderId: z.ZodOptional>; projectId: z.ZodString; externalId: z.ZodString; status: z.ZodOptional>>; trigger: z.ZodOptional>>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>; export type Table = z.infer; export declare const PopulatedTable: z.ZodObject<{ name: z.ZodString; folderId: z.ZodOptional>; projectId: z.ZodString; externalId: z.ZodString; status: z.ZodOptional>>; trigger: z.ZodOptional>>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; fields: z.ZodArray; tableId: z.ZodString; projectId: z.ZodString; data: z.ZodObject<{ options: z.ZodArray>; }, z.core.$strip>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>, z.ZodObject<{ name: z.ZodString; externalId: z.ZodString; type: z.ZodUnion, z.ZodLiteral, z.ZodLiteral]>; tableId: z.ZodString; projectId: z.ZodString; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>]>>; }, z.core.$strip>; export type PopulatedTable = z.infer; //# sourceMappingURL=table.d.ts.map