import BaseError from './BaseError'; interface QueryLimitErrorOptions { message?: string; } declare class QueryLimitError extends BaseError { constructor({ message, }?: QueryLimitErrorOptions); } export default QueryLimitError;