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 };
