/** * Test an assertion for its truthiness * * @param condition Assertion condition * @param message Error message if the assertion has failed */ export declare const assert: (condition: any, message: string) => void;