import { Errors } from "./Enums";
export default class PlayerError extends Error {
    createdAt: Date;
    readonly code: Errors;
    readonly message: string;
    readonly createdTimestamp: number;
    constructor(code: Errors, message: string);
    toJSON(): {
        stack: string;
        code: Errors;
        created: number;
    };
    toString(): string;
}
