/** * Represents an error thrown because a creative island does not exist */ declare class CreativeIslandNotFoundError extends Error { /** * The query which resulted in this error */ query: string; /** * @param query The query which resulted in this error */ constructor(query: string); } export default CreativeIslandNotFoundError;