import type { LemaCollectionRelationship } from '../relation'; /** * Convert boolean flags to collection relationship type * * Converts boolean flags representing relationship cardinality into * the appropriate Lema collection relationship type string. * * @param params - Object containing relationship cardinality flags * @param params.connected_have_many_current - Whether the connected collection can have many of current collection * @param params.current_have_many_connected - Whether the current collection can have many of connected collection * @returns The appropriate collection relationship type * * @example * ```typescript * const relationship = boolean_to_relationship({ * connected_have_many_current: true, * current_have_many_connected: false * }); * // Returns: 'm2o' * ``` */ export declare const boolean_to_relationship: ({ connected_have_many_current, current_have_many_connected }: { connected_have_many_current: boolean; current_have_many_connected: boolean; }) => LemaCollectionRelationship;