/** * Light-weight runtime assert * * @throws `Error` on assertion failure */ export declare function fastAssert(condition: unknown, message?: string | undefined): asserts condition; /** @deprecated Use `fastAssert` instead */ export declare const assert: typeof fastAssert; //# sourceMappingURL=assert.d.ts.map