import { ReactNode } from 'react';
type Props = {
    id?: string;
    className?: string;
    style?: React.CSSProperties;
    onClick?: () => void;
    children: ReactNode;
};
declare const ExtendedBlockActions: ({ id, className, style, onClick, children }: Props) => import("react/jsx-runtime").JSX.Element | null;
export { ExtendedBlockActions };
//# sourceMappingURL=ExtendedBlockActions.d.ts.map