declare class NameExistsError extends Error {
    constructor(message: string);
    toJSON(): object;
}
export default NameExistsError;
