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) | undefined; root?: (Omit, 'children'> & HasRootRef & HasDataAttribute) | undefined; } | undefined; selectType?: SelectType | undefined; multiline?: boolean | undefined; labelTextTestId?: string | undefined; fetching?: boolean | undefined; searchable?: boolean | undefined; accessible?: boolean | undefined; } /** * @since 5.10.0 * @private */ export declare const CustomSelectInput: ({ style: rootStyle, className: rootClassName, getRootRef: rootGetRootRef, align, getRef, before, after, status, children, placeholder: placeholderProp, selectType, multiline, fetching, labelTextTestId, searchable, accessible, slotProps, ...restProps }: CustomSelectInputProps) => React.ReactNode; //# sourceMappingURL=CustomSelectInput.d.ts.map