/* * 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 { InputProps } from "./types.js"; import "client-only"; import * as react_jsx_runtime84 from "react/jsx-runtime"; //#region src/components/input/index.d.ts /** * Input - A flexible text input component with enhanced features * * Provides a customizable text input with automatic sizing, clear functionality, * and integrated validation states. Supports various styling options and integrates * seamlessly with form field components for comprehensive form experiences. * * @param props - {@link InputProps} * @param props.ref - Ref to the input element. * @param props.classNames - CSS class names for input subcomponents. * @param props.autoSize - Whether the input should auto-size to its content. * @param props.prefix - Content to display before the input. * @param props.size - Size variant for the input. * @param props.suffix - Content to display after the input. * @param props.isClearable - Whether the input shows a clear button. * @param props.isInvalid - Whether the input is in an invalid state. * @returns The rendered Input component. * * @example * ```tsx * // Basic input * * ``` * * @example * ```tsx * // Input with clear button * * ``` */ declare function Input({ ref, ...props }: InputProps): react_jsx_runtime84.JSX.Element; //#endregion export { Input }; //# sourceMappingURL=index.d.ts.map