import React from "react"; import type { ButtonProps } from "@appsmith/wds"; import type { ListState } from "@react-stately/list"; import type { Node } from "@react-types/shared"; interface ToolbarButtonProps extends ButtonProps { state: ListState; item: Node; } export declare const ToolbarButton: React.ForwardRefExoticComponent & React.RefAttributes>; export {};