export interface IOrReplaceState { _orReplaceValue?: "ABORT" | "FAIL" | "IGNORE" | "REPLACE" | "ROLLBACK"; orAbort: typeof orAbort; orFail: typeof orFail; orIgnore: typeof orIgnore; orReplace: typeof orReplace; orRollback: typeof orRollback; } export declare function orAbort(this: T): T; export declare function orFail(this: T): T; export declare function orIgnore(this: T): T; export declare function orReplace(this: T): T; export declare function orRollback(this: T): T;