import { type Context } from '@semantic-api/api'; import { description, type User } from './description'; type Props = { what: Partial; }; declare const createAccount: (props: Props, context: Context) => Promise | undefined>; export default createAccount;