export interface AccessTokenPayload {
    email: string;
    iat: number;
    exp: number;
}
