export declare type Transformable = T | Promise | (() => T) | (() => Promise); export declare const normalizeTransformable: (data: Transformable) => Promise;