/** * Forcefully asserts the type of the input value to be `T` and returns that original value. * @group Other helpers * @example * using(unknownValue).pipe( * unsafeAssertType, * reduce((acc, x) => acc + x) * ); */ export declare const unsafeAssertType: (input: unknown) => T;