/** * Fail message with colors. * * @category Output */ export declare const FAIL: string; /** * Test message to be shown next to the test path. * * @category Output */ export declare const TEST: string; /** * Pass message with colors. * * @category Output */ export declare const PASS: string; /** * Failed test title with colors. * * @category Output */ export declare const FAILED_TESTS: `\u001B[31m${string}\u001B[39m`; /** * Exception difference kind. * * @category Internal */ export declare const EXCEPTION = "EXCEPTION"; /** * Unknown error. * * @category Internal */ export declare const UNKNOWN_ERROR = "Unknown Error";