import type { DynamoDBGetClient } from '../../types/aws.types';
export declare const checkExistingLicense: ({ dynamoDBClient, licenseTableName, userOrgId, assignedToUserId, }: {
    dynamoDBClient: DynamoDBGetClient;
    licenseTableName: string;
    userOrgId?: string;
    assignedToUserId?: string;
}) => Promise<Record<string, import("@aws-sdk/client-dynamodb").AttributeValue> | undefined>;
