import { Component } from 'react';
interface valueProps {
    type: 'JSExpression' | 'JSFunction';
    value: string;
}
interface FieldSetterProps {
    template: string;
    defaultField: string;
    data: valueProps;
    field: any;
    onChange: (val: string) => undefined;
}
export default class extends Component<FieldSetterProps> {
    render(): JSX.Element;
}
export {};
