import React from 'react';
import type { ReactNode } from 'react';
import type RendererActions from '../../actions/index';
interface WithRendererActionsProps {
    render(actions: RendererActions): ReactNode | null;
}
export declare function WithRendererActions({ render }: WithRendererActionsProps): React.JSX.Element;
export {};
