/*! * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT */ export declare const MESSAGES: { readonly INVALID_NEXT: "The value of \"Next\" property must be the name of an existing state."; readonly INVALID_DEFAULT: "The value of \"Default\" property must be the name of an existing state."; readonly INVALID_START_AT: "The value of \"StartAt\" property must be the name of an existing state."; readonly INVALID_JSON_PATH_OR_INTRINSIC: "The value for the field must be a valid JSONPath or intrinsic function expression."; readonly INVALID_JSON_PATH_OR_INTRINSIC_STRING_ONLY: "The value for the field must be a valid JSONPath or an intrinsic function expression that returns a string (ArrayGetItem, Base64Encode, Base64Decode, Format, JsonToString, Hash, or UUID)."; readonly UNREACHABLE_STATE: "The state cannot be reached. It must be referenced by at least one other state."; readonly NO_TERMINAL_STATE: "No terminal state. The state machine must have at least one terminal state (a state in which the \"End\" property is set to true)."; readonly INVALID_PROPERTY_NAME: "Field is not supported."; readonly MUTUALLY_EXCLUSIVE_CHOICE_PROPERTIES: "Each Choice Rule can only have one comparison operator."; }; export declare const YAML_PARSER_MESSAGES: { readonly DUPLICATE_KEY: "duplicate key"; };