import { WhodisContactMethod, WhodisUser } from '../../domain';
export declare const createUser: (args: {
    externalId: string;
    contactMethod: WhodisContactMethod;
}, context: {
    credentials: {
        privateKey: string;
        publicKey: string;
    };
}) => Promise<WhodisUser>;
