import { messages } from '../../../../common/sdk/messages'; declare class NilAssignmentError extends Error { constructor(params: Parameters[0]); } declare class UnsupportedLinkTypeError extends Error { constructor(params: Parameters[0]); } export declare class InvalidLabelError extends NilAssignmentError { constructor(index: number); } export declare class InvalidIdPatternError extends Error { constructor({ index, label, id, }: { index: number; label: string; id: string; }); } export declare class NonUniqueIdError extends Error { constructor({ id }: { id: string; }); } export declare class InvalidTargetError extends Error { constructor({ index, label, target, }: { index: number; label: string; target: string; }); } export declare class InvalidMenuDepthError extends Error { constructor(maxLevels: number, labelValue: string); } export declare class LinkTypeError extends UnsupportedLinkTypeError { constructor(wrongValue: string, index: number); } export {};