import { BoundaryResult } from './BoundaryResult.js'; import { RESULT_FAILURE } from './BoundaryResultTypeConstants.js'; /** * This indicates a failure. Use `BoundaryFailureKindConstants` to determine what type of failure it is. * * @public */ export declare class BoundaryFailure extends BoundaryResult { readonly resultType: typeof RESULT_FAILURE; readonly kind: string; readonly message: string; readonly location: string; readonly contractCaseErrorCode: string; readonly userFacingStackTrace: string; constructor(kind: string, message: string, location: string, userFacingStackTrace: string, contractCaseErrorCode: string); } //# sourceMappingURL=BoundaryFailure.d.ts.map