import { type RefObject } from "react"; export type Element = { Domain: string; PrimKey: string; ProjectID: string; ProjectName: string; ElementID: string | null; }; export type ElementLookupHandle = { openDialog: () => void; closeDialog: () => void; }; export type ElementLookupProps = { value?: Element | null; defaultValue?: Element | null; ref?: RefObject; elementIDRequired?: boolean; openLookupDialogIcon?: boolean; onChange?: (value: Element | null) => void; onDialogChange?: (open: boolean) => void; }; export declare function ElementLookup({ value, defaultValue, ref, elementIDRequired, openLookupDialogIcon, onChange, onDialogChange, }: ElementLookupProps): import("react").JSX.Element;