/**
 * Identity function - returns the argument as-is.
 */
declare const identity: <T>(x: T) => T;
export { identity };
export default identity;
