export declare function shouldThrow(promise: Promise): Promise; export declare function shouldNotFail(promise: Promise): Promise; export declare const shouldFail: (promise: Promise, message?: string | null) => Promise; export declare const assertThrows: (promise: Promise, message?: string | null) => Promise; export declare const assertThrowsSync: (f: () => any) => void;