import React, { FC } from 'react'; interface DropdownFooterProps { /** Content to render in the footer. */ children: React.ReactNode; } export declare const DropdownFooter: FC; export {};