declare type Attr<T, R> = R | ((args?: T) => R);
export declare function value<R = any, T = Record<string, any>>(attribute: Attr<T, R> | Attr<T, R>[], args?: T): R;
export {};
