export declare type ValueFunction = () => T; export declare type ValueFactory = T | ValueFunction; export declare function getValue(fov: ValueFactory): T;