import { SelectProps } from '@patternfly/react-core'; import { ReactNode } from 'react'; declare type AcmSelectProps = Pick> & { id: string; label: string; value: string | undefined; onChange: (value: string | undefined) => void; validation?: (value: string | undefined) => string | undefined; placeholder?: string; labelHelp?: string; labelHelpTitle?: ReactNode; helperText?: ReactNode; isRequired?: boolean; }; export declare function AcmSelect(props: AcmSelectProps): JSX.Element; export {};