import type { CreateLicenseItem } from './createLicenseItem.types';
interface DynamoDBAttributeValue {
    S: string;
}
interface DynamoDBItem {
    licenseKey: DynamoDBAttributeValue;
    assignedToUserId: DynamoDBAttributeValue;
    orgId?: DynamoDBAttributeValue;
}
export declare const createLicenseItem: ({ licenseKey, userOrgId, assignedToUserId, }: CreateLicenseItem) => DynamoDBItem;
export {};
