/** * Mask type for any type. * * @param _input The value to check. * @returns `true` if the input is any type, `false` otherwise. */ export declare const isAny: (_input: unknown) => _input is any; /** * Mask type for any type. * * @param input The input value to mask as any type. * @returns Unchanged input value as any type. */ export declare const any: (input: unknown) => any;