/// <reference types="react" />
import { Props as FieldProps } from "./field";
import "./listfield.css";
export interface Props extends FieldProps {
    fields: string[];
    onChange: (key, val) => void;
    placeholder?: string;
    disabled?: boolean;
    className?: string;
}
export declare const ListField: (props: Props) => JSX.Element;
export default ListField;
