import type { ObjectSchema } from '@becomes/purple-cheetah/types'; export interface UserRefreshToken { value: string; meta: string; expAt: number; } export declare const UserRefreshTokenSchema: ObjectSchema;