type Flow = {
    set(key: string, normalize?: any, callback?: any): Flow;
    setAsync(key: string, normalize?: any, callback?: any): Promise<Flow>;
};
/**
 * @todo Combine with the `Container` util
 */
export declare function flow(target: Record<keyof any, any>, source: Record<keyof any, any>): Flow;
export {};
