import React from "react"; export declare type ActionType = { icon: React.ReactNode; label: string; onClick: () => void; }; declare type ToolBoxProps = { formElementId: string; actions?: ActionType[]; }; export declare const FormElementToolbox: React.FC; export {};