import { AssertionError } from '../core/errors.js';
type Assert = (condition: unknown, message?: string | AssertionError, details?: {
    actual?: unknown;
    field?: string;
}) => asserts condition;
declare const assert: Assert;
export { assert };
