import { ReactNode } from 'react';
import { Variable } from '../../types/variables';
export declare const transformVariableToReact: (variable: Variable, editable?: boolean, onChange?: (name: string, value: string) => void) => ReactNode;
