import { LabelGroupProps } from '@patternfly/react-core'; import { FieldPathByValue, FieldValues, Validate, ValidationRule } from 'react-hook-form'; import { PageFormGroupProps } from './PageFormGroup'; export type PageFormMultiInputProps = FieldPathByValue> = { name: TFieldName; placeholder?: string; minLength?: number | ValidationRule; maxLength?: number | ValidationRule; pattern?: ValidationRule; validate?: Validate; selectTitle?: string; isDisabled?: boolean; selectOpen?: (callback: (selection: T[]) => void, title: string) => void; getChipLabel: (item: T) => string; } & Omit & LabelGroupProps; export declare function PageFormMultiInput = FieldPathByValue>(props: PageFormMultiInputProps): import("react/jsx-runtime").JSX.Element;