import { ComponentProps, FC } from 'react'; type Props = { alignment?: "right" | "left"; active?: boolean; hoverable?: boolean; }; export declare const Dropdown: FC, keyof Props> & Props>; export {};