import * as React from "react"; import { ReactNode } from "react"; import { IActionProps } from "./components"; import "./ActionsDropdown.scss"; interface IProps { toggleBtnText: string; className?: string; children?: ReactNode; onToggle?: (state: boolean) => void; getActions?: () => ReactNode; positionDropdown?: "left" | "right"; } declare const ActionsDropdown: { (props: IProps): JSX.Element; Action: (props: IActionProps) => JSX.Element; Group: React.FC; }; export { ActionsDropdown, IActionProps };