import * as React from 'react';
import { FieldType } from './ThemeEditor';
export interface FieldProps {
    type: FieldType;
    name: string;
    value: string;
    variable: string;
    onChange: (newVal: string | false) => void;
    disabled: boolean;
}
export declare const Field: React.FunctionComponent<FieldProps>;
