import { GetUserFunctionReturn } from "../../types"; type Param = { key: string; database: string; userId: number; fields?: string[]; useLocal?: boolean; apiVersion?: string; }; /** * # Get User */ export default function getUser({ key, userId, database, fields, useLocal, apiVersion, }: Param): Promise; export {};