import { UserType } from "../../types"; type Params = { user: UserType; }; type Return = { fullName?: string; host?: string; username?: string; password?: string; }; export default function grabMariadbMainUserForUser({ user, }: Params): Promise; export {};