export declare type ValueOrGetter<T> = T | ((owner: any) => T);
export declare const getValueOf: <T>(value: ValueOrGetter<T>, owner: any) => T;
