/** * @example * assert(false, "throw this error message") * assert(true, "nothing happens") */ export declare function assert(condition?: any, message?: string): asserts condition;