import React from 'react'; declare type DropdownPlacement = 'top' | 'top-start' | 'top-end' | 'right' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left'; export interface IDropdownContentProps { children: any; placement?: DropdownPlacement; className?: string; onOutsideClick?(e: any): void; [x: string]: any; } export declare const DropdownContent: React.FC; export {};