import * as React from 'react'; import type { HasAlign, HasDataAttribute, HasRef, HasRootRef } from '../../../types'; import { type FormFieldProps } from '../../FormField/FormField'; import type { SelectType } from '../../Select/Select'; export interface CustomSelectInputProps extends React.InputHTMLAttributes, HasRef, HasRootRef, HasAlign, Omit { slotProps?: { input?: React.InputHTMLAttributes & HasRootRef & HasDataAttribute; root?: Omit, 'children'> & HasRootRef & HasDataAttribute; }; selectType?: SelectType; multiline?: boolean; labelTextTestId?: string; fetching?: boolean; searchable?: boolean; accessible?: boolean; } /** * @since 5.10.0 * @private */ export declare const CustomSelectInput: ({ style: rootStyle, className: rootClassName, getRootRef: rootGetRootRef, align, getRef, before, after, status, children, placeholder, selectType, multiline, fetching, labelTextTestId, searchable, accessible, slotProps, ...restProps }: CustomSelectInputProps) => React.ReactNode; //# sourceMappingURL=CustomSelectInput.d.ts.map