/**
 * Interactively select a single entity from a list of related entities
 */
export declare function selectSingleEntity(fieldName: string, relatedModel: string, entities: any[]): Promise<{
    id: string;
} | null>;
/**
 * Interactively select multiple entities from a list of related entities
 */
export declare function selectMultipleEntities(fieldName: string, relatedModel: string, entities: any[]): Promise<{
    id: string;
}[] | null>;
