import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; interface DropdownMenuFooterProps extends HTMLAttributes { children: ReactNode; ref?: Ref; } export declare const DropdownMenuFooter: FC; export {};