import { z } from 'zod'; import type { def } from '#src/schema/creator/index.js'; import type { AdminCrudActionType } from './types.js'; export declare const createAdminCrudEditActionSchema: (context: import("#src/schema/creator/index.js").DefinitionSchemaParserContext) => z.ZodObject<{ id: z.ZodDefault; position: z.ZodDefault>; type: z.ZodLiteral<"edit">; }, z.core.$loose>; export type AdminCrudEditActionConfig = def.InferInput; export declare const createAdminCrudDeleteActionSchema: (context: import("#src/schema/creator/index.js").DefinitionSchemaParserContext) => z.ZodObject<{ id: z.ZodDefault; position: z.ZodDefault>; type: z.ZodLiteral<"delete">; }, z.core.$loose>; export type AdminCrudDeleteActionConfig = def.InferInput; export declare const BUILT_IN_ADMIN_CRUD_ACTIONS: AdminCrudActionType[]; //# sourceMappingURL=built-in-actions.d.ts.map