@yamada-ui/autocomplete
Version:
Yamada UI autocomplete component
14 lines (11 loc) • 497 B
TypeScript
import * as _yamada_ui_core from '@yamada-ui/core';
import { HTMLUIProps } from '@yamada-ui/core';
import { MotionPropsWithoutChildren } from '@yamada-ui/motion';
import { ReactNode } from 'react';
interface AutocompleteListProps extends HTMLUIProps {
footer?: ReactNode;
header?: ReactNode;
contentProps?: MotionPropsWithoutChildren;
}
declare const AutocompleteList: _yamada_ui_core.Component<"div", AutocompleteListProps>;
export { AutocompleteList, type AutocompleteListProps };