import { BoundaryResult } from './BoundaryResult'; import { RESULT_FAILURE } from './BoundaryResultTypeConstants'; /** * 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; constructor(kind: string, message: string, location: string); } //# sourceMappingURL=BoundaryFailure.d.ts.map