import type { User } from "../../../../types/types";
declare type GetUserParams = {
email?: string;
id?: number;
emailConfirmCode?: string;
};
declare function getUser({ email, emailConfirmCode, id, }: GetUserParams): Promise<[User | null, any]>;
export { getUser };