export declare function shallowEqual(objA: any, objB: any): boolean;
export interface Mixins extends Record<string, any> {
    locks: number;
    methods: Array<Function>;
}
export declare function patch(target: object, methodName: string, mixinMethod: Function): void;
