import { PickOne } from 'type-fns';
import { WhodisContactMethod, WhodisIdentity, WhodisUser } from '../../domain';
export declare const getUser: (args: PickOne<{
    userUuid: string;
    contactMethod: WhodisContactMethod;
    identity: Omit<WhodisIdentity, 'uuid'>;
}>, context: {
    credentials: {
        privateKey: string;
        publicKey: string;
    };
}) => Promise<WhodisUser | null>;
