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 SelectListProps extends HTMLUIProps { footer?: ReactNode; header?: ReactNode; contentProps?: MotionPropsWithoutChildren; } declare const SelectList: _yamada_ui_core.Component<"div", SelectListProps>; export { SelectList, type SelectListProps };