/** * Resolves a value that may be provided directly or via a factory function. * * @param valueOrFunction - The value, or a function that returns the value. * @param arg - The argument passed to the function when `valueOrFunction` is a function. * @returns The resolved value. */ export declare const parseFromValuesOrFunc: (valueOrFunction: Value | ((arg: Arg) => Value), arg?: Arg) => Value;