import { AutocompleteProps } from './types'; import { AnyRecord, IJSX, StyledComponentProps } from '@codeleap/styles'; export * from './styles'; export * from './types'; /** * Unlike Select, Autocomplete renders inline (no modal) — the result list is positioned below * the search input in the same scroll context, so `scrollEnabled` is false on the inner List to * avoid nested scroll conflicts. * * `selectable` must be true for item presses to update `value`; without it, `onItemPressed` * fires but selection state is never written. */ export declare const Autocomplete: { (autocomplete: AutocompleteProps): import("react/jsx-runtime").JSX.Element; styleRegistryName: string; elements: string[]; rootElement: string; withVariantTypes(styles: S): ((props: StyledComponentProps, typeof styles>) => IJSX); defaultProps: Partial>; }; //# sourceMappingURL=index.d.ts.map