declare const alter: (obj: object) => {
    byApplying: (transformer: (a: any) => any) => {
        toKey: (key: string) => object;
    };
};
export { alter };
