import type { Tag } from "../utils/utils"; interface IParam { refUserId: string | number; tags: Tag[]; } declare function userInit({ refUserId, tags }: IParam): Promise; export default userInit;