import React from 'react'; export interface BoxActionbarProps { disabled?: boolean; selectable?: boolean; onSelect?: () => void; onCheckAll?: () => void; onMenuItemClick?: (key: string) => void; } export declare const BoxActionbar: React.FC;