import { DropdownProps } from 'antd/lib/dropdown'; import React from 'react'; import DropdownButton from './dropdown-button'; export type { DropdownProps }; export declare type DropdownArrowOptions = { pointAtCenter?: boolean; }; export interface DropdownInterface extends React.FC { Button: typeof DropdownButton; } declare const Dropdown: DropdownInterface; export default Dropdown;