import React from "react"; import Children from "../../../types/children-prop"; interface Props extends React.HTMLAttributes { children: Children; } declare const ActionsPanel: (props: Props) => React.JSX.Element; export default ActionsPanel;