/// <reference types="react" />
import { Indexable } from "../../Indexable";
export interface InputSetProps {
    state: Indexable;
    updateProperty: (property: string, value: any) => any;
}
export declare const InputSet: ({ state, updateProperty }: InputSetProps) => JSX.Element;
