/* * Copyright 2026 Hypergiant Galactic Systems Inc. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { OptionsDataItem } from "../options/types.js"; import { ComboBoxFieldProps } from "./types.js"; import "client-only"; import * as react_jsx_runtime9 from "react/jsx-runtime"; //#region src/components/combobox-field/index.d.ts /** * ComboBoxField - Accessible searchable combobox with dropdown options * * A combobox field that provides a searchable input with virtualized dropdown * options and support for sections, icons, and rich content. * * @param props - The combobox field props. * @param props.ref - Reference to the field element. * @param props.children - Render function for options. * @param props.classNames - Custom class names for sub-elements. * @param props.label - Label text displayed above the field. * @param props.description - Helper text displayed below the field. * @param props.errorMessage - Error message displayed when invalid. * @param props.size - Size variant of the field. * @returns The combobox field component. * * @example * ```tsx * * {(item) => {item.name}} * * ``` */ declare function ComboBoxField({ ref, ...props }: ComboBoxFieldProps): react_jsx_runtime9.JSX.Element; //#endregion export { ComboBoxField }; //# sourceMappingURL=index.d.ts.map