import * as T from '../../type/index.mjs'; export type TInsert = T.Static; export declare const Insert: T.TObject<{ type: T.TLiteral<'insert'>; path: T.TString; value: T.TUnknown; }>; export type TUpdate = T.Static; export declare const Update: T.TObject<{ type: T.TLiteral<'update'>; path: T.TString; value: T.TUnknown; }>; export type TDelete = T.Static; export declare const Delete: T.TObject<{ type: T.TLiteral<'delete'>; path: T.TString; }>; export type TEdit = T.Static; export declare const Edit: T.TUnion<[ typeof Insert, typeof Update, typeof Delete ]>;