///
export interface JaenFieldProps {
name: string;
defaultValue: IDefaultValue;
style?: React.CSSProperties;
className?: string;
}
export declare const connectField: (Component: import("react").ComponentType & {
staticValue?: IValue | undefined;
value?: IValue | undefined;
isEditing: boolean;
onUpdateValue: (value: IValue) => void;
};
}>, options: {
fieldType: string;
}) => import("react").FC>;
export type IFieldConnection = ReturnType;