import BaseError from './base-error'; /** * Thrown when an association is improperly constructed (see message for details) */ declare class AssociationError extends BaseError { constructor(message: string); } export default AssociationError;