export type RepoInputFindUserByEmail = { email: string; }; export type RepoOutputFindUserByEmail = { id: string; } | null;