export interface JwtPayload {
  email: string;
  sub: string; // user ID
  iat?: number; // issued at
  exp?: number; // expiration time
}