/// export declare type WithControlsProps = { /** * @type {string[]} * An array of hidden control IDs (Stored in WithControls local state) */ hideControlsArray: string[]; /** * @type {function} * Set the array of control IDs you would like to hide for the component (Stored in WithControls local state) */ setHideControlsArray: React.Dispatch>; }; export declare type WithStylesProps = { className: string; classNames: Record; };