import { FC } from 'react'; import { default as z } from 'zod/v4'; import { Spec } from '../types/spec'; export interface OperatorParams { key: T; name: string; Symbol: FC; } export declare const createOperator: ({ key, name, Symbol, }: OperatorParams) => { configZ: z.ZodObject<{ type: z.ZodLiteral; }, z.core.$strip>; spec: Spec; }; //# sourceMappingURL=create.d.ts.map