/** Copyright 2021 Forestry.io Holdings, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import * as React from 'react'; import { FocusRingOptions } from '../styles'; export interface BlocksControlActionItem { icon: React.ReactNode; onClick: () => void; } export interface BlocksControlsProps { children: React.ReactChild | React.ReactChild[]; index: number; insetControls?: boolean; label?: boolean; focusRing?: boolean | FocusRingOptions; customActions?: BlocksControlActionItem[]; } export declare function BlocksControls({ children, index, insetControls, label, focusRing, customActions, }: BlocksControlsProps): JSX.Element; interface BlockMenuWrapperProps { index?: number; active: boolean; inset?: boolean; offset?: number | { x: number; y: number; }; } export declare const BlockMenuWrapper: import("styled-components").StyledComponent<"div", any, BlockMenuWrapperProps, never>; export declare const BlockMenuSpacer: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const BlockLabel: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const BlockMenu: import("styled-components").StyledComponent<"div", any, {}, never>; export {};