export type MutationOperator = "SET" | "PUSH" | "POP" | "ADD" | "SUBTRACT" | "MULTIPLY" | "DIVIDE" | "INCREMENT" | "DECREMENT";
export type MutationRegexGroups = {
    fieldName: string;
    operator: MutationOperator | undefined;
};
export declare function parseMutationField(field: string): MutationRegexGroups;
//# sourceMappingURL=parse-mutation-field.d.ts.map