import z from 'zod';
export declare const USER_TYPE: {
    readonly STAFF: "STAFF";
    readonly PLAYER: "PLAYER";
};
export declare const UserTypeSchema: z.ZodEnum<{
    readonly STAFF: "STAFF";
    readonly PLAYER: "PLAYER";
}>;
