import { FormTypes } from '@oneblink/types'; import { FormElementLookupHandler, FormElementValueChangeHandler, IsDirtyProps } from '../types/form'; type ValidationMessageProps = { displayValidationMessage: boolean; validationMessage: string | undefined; } & IsDirtyProps; type Props = { id: string; element: FormTypes.LookupButtonFormElement; } & ValidationMessageProps; declare function FormElementLookupButton({ id, element, onChange, onLookup, validationMessage, ...validationMessageProps }: Props & { onChange: FormElementValueChangeHandler; onLookup: FormElementLookupHandler; }): import("react/jsx-runtime").JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;