import { FC, HTMLAttributes, PropsWithChildren } from 'react'; export type DropdownContentPlacement = "top" | "bottom" | "left" | "right"; export type DropdownContentProps = HTMLAttributes & { isWithAnimation?: boolean; }; export interface DropdownSize { width: number; height: number; } export declare const DropdownContent: FC>;