import { MixedAutocompleteProps } from '../../components/MixedAutocomplete'; import React from 'react'; import { SxProps } from '@mui/material/styles'; export interface DomainPickerProps extends Omit, 'onChange' | 'options' | 'renderInput'> { buttonSx?: SxProps; domain: string; labelKey?: string; onChange?: (value: T) => void; optionTemplate?: string; template?: string; transformFn?: (option: any) => any; valueKey?: string; } declare const DomainPicker: React.FC>; export default DomainPicker;