import { HTMLAttributes, ReactNode } from 'react';
import { BaseDropdownMenuProps } from './shared';
export interface DropdownMenuChoiceListProps extends Omit, 'aria-labelledby'>, BaseDropdownMenuProps {
children?: ReactNode;
}
export interface DropdownMenuChoiceListFooterActionsProps extends HTMLAttributes {
children: ReactNode;
}
declare const DropdownMenuChoiceList: {
({ children, menuAnchor, menuWidth, size, ...props }: DropdownMenuChoiceListProps): JSX.Element;
FooterActions: ({ children, ...props }: DropdownMenuChoiceListFooterActionsProps) => JSX.Element;
};
export default DropdownMenuChoiceList;