import React from 'react'; import type { IVariableError } from './inputs/variableInput.service'; export interface IVariableErrorProps { errors: IVariableError[]; } export interface IVariableErrorState { } export declare class VariableError extends React.Component { render(): JSX.Element; private renderErrors; }