export declare function identity<T>(v: T): T;
export declare function emptyFunction(): void;
export declare function emptyArray(): any[];
export declare function emptyObject(): object;
export declare function alwaysFalse(): boolean;
export declare function alwaysNull(): null;
export declare function alwaysZero(): number;
export declare function alwaysRejected(): Promise<any>;
