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