/** * Copyright (c) 2023 Google LLC * SPDX-License-Identifier: MIT */ import type { ComboboxOptionObject } from '@looker/components'; import type { TreeModel } from '../types'; /** * @returns Combobox option info based on a TreeModel, for use in TreeSelect */ export declare const getOption: (tree: TreeModel) => ComboboxOptionObject;