export declare class UserInputError extends Error { constructor({ reason, domainObjectName, domainObjectPropertyName, potentialSolution, }: { reason: string; domainObjectName?: string; domainObjectPropertyName?: string; potentialSolution?: string; }); }