/** * assert * * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT license. * */ declare const assert: (cond: any, message?: string | undefined) => void; export default assert;