import * as React from "react"; interface IActionProps { title: React.ReactNode; disabled?: boolean; hint?: string; closeDropdownOnClick?: boolean; onClick: () => void; } declare const Action: (props: IActionProps) => JSX.Element; export { Action, IActionProps };