import { BoundaryResult } from './BoundaryResult'; import { RESULT_SUCCESS_HAS_MAP_PAYLOAD } from './BoundaryResultTypeConstants'; /** * This indicates a success returning a map of strings to arbitrary payloads * * @public */ export declare class BoundarySuccessWithMap extends BoundaryResult { readonly resultType: typeof RESULT_SUCCESS_HAS_MAP_PAYLOAD; readonly payload: Record; constructor(payload: Record); } //# sourceMappingURL=BoundarySuccessWithMap.d.ts.map