import React from 'react'; interface Props { visible: boolean; className?: string; disableMatchWidth?: boolean; dropdownStyle?: Record; } declare const defaultProps: { className: string; dropdownStyle: {}; }; type NativeAttrs = Omit, keyof Props>; export type AutoCompleteDropdownProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "className" | "dropdownStyle">>; export default _default;