import type { FC } from 'react';
import type { ICommonProps } from '../typings/common';
import type { IRenderer } from '../typings/core';
interface IProps extends ICommonProps {
    renderer: IRenderer;
    gridColumn?: string;
}
declare const RendererExecutor: FC<IProps>;
export default RendererExecutor;
