import { SerializePath } from './StructureNodes'; export declare class SerializeError extends Error { readonly path: SerializePath; helpId?: HELP_URL; constructor(message: string, parentPath: SerializePath, pathSegment: string | number | undefined, hint?: string); withHelpUrl(id: HELP_URL): SerializeError; } export declare enum HELP_URL { ID_REQUIRED = "structure-node-id-required", TITLE_REQUIRED = "structure-title-required", FILTER_REQUIRED = "structure-filter-required", INVALID_LIST_ITEM = "structure-invalid-list-item", DOCUMENT_ID_REQUIRED = "structure-document-id-required", SCHEMA_TYPE_REQUIRED = "structure-schema-type-required", SCHEMA_TYPE_NOT_FOUND = "structure-schema-type-not-found", LIST_ITEMS_MUST_BE_ARRAY = "structure-list-items-must-be-array", QUERY_PROVIDED_FOR_FILTER = "structure-query-provided-for-filter", ACTION_OR_INTENT_REQUIRED = "structure-action-or-intent-required", LIST_ITEM_IDS_MUST_BE_UNIQUE = "structure-list-item-ids-must-be-unique", ACTION_AND_INTENT_MUTUALLY_EXCLUSIVE = "structure-action-and-intent-mutually-exclusive" }