/** * Returns the provided value if it is not undefined, otherwise returns the default value. * * @param value - The value to check. * @param defaultValue - The default value to return if the provided value is undefined. * @returns The provided value if it is not undefined, otherwise the default value. */ export declare const getValueOrDefault: (value: T | undefined, defaultValue: T) => T;