import { z } from "zod"; import type { FunctionOptions } from "../../../types/functions"; export declare const DeleteTableFieldsOptionsSchema: z.ZodObject<{ table: z.ZodString & { _def: z.core.$ZodStringDef & import("../../..").PositionalMetadata; }; fields: z.ZodArray>; }, z.core.$strip>; declare const DeleteTableFieldsOptionsSchemaDeprecated: z.ZodObject<{ tableId: z.ZodString; fieldKeys: z.ZodArray>; }, z.core.$strip>; export declare const DeleteTableFieldsOptionsInputSchema: z.ZodUnion>; }, z.core.$strip>, z.ZodObject<{ tableId: z.ZodString; fieldKeys: z.ZodArray>; }, z.core.$strip>]>; export type DeleteTableFieldsOptions = (z.infer & FunctionOptions) | (Omit, "tableId" | "fieldKeys"> & { /** @deprecated Use `table` instead. */ tableId: z.infer["tableId"]; /** @deprecated Use `fields` instead. */ fieldKeys: z.infer["fieldKeys"]; } & FunctionOptions); export interface DeleteTableFieldsResult { success: boolean; } export interface DeleteTableFieldsSdkFunction { deleteTableFields: (options: DeleteTableFieldsOptions) => Promise; } export {}; //# sourceMappingURL=schemas.d.ts.map