/** * Retrieves the value from an entry object based on the specified column path. * Handles nested fields and one-to-many relationships using dot notation. * * @param entry - The entry object from which to retrieve the value. * @param column - The column path, which can include dot notation for nested fields. * @param parse - Whether to parse the retrieved value. Defaults to true. * @returns The retrieved value, or a concatenated string if the field is a one-to-many relationship. */ export declare const getValue: (entry: object | null | undefined, column: string, parse?: boolean) => unknown;