import type { SyntheticEvent } from 'react'; import { type Address, type AddressAutocompleteProps, type AddressAutocompleteValue } from '../AddressAutocomplete'; type UseLogicParams = AddressAutocompleteProps; export declare const useLogic: ({ onChange, isHidePersonalData, }: UseLogicParams) => { handleChange: (_: SyntheticEvent, newValue: string | TOptions | null) => void; getOptionLabel: (option: string | TOptions) => string; hidePersonalInputDataClassname: string; hidePersonalDataClassname: string; }; export {};