import { Dispatch, SetStateAction } from "react";
import { Attribute } from "../../types";
interface DefaultValueProps {
    id: string;
    name: string;
    form: Attribute;
    setForm: Dispatch<SetStateAction<Attribute>>;
}
export declare function DefaultValue({ id, name, form, setForm }: DefaultValueProps): import("react/jsx-runtime").JSX.Element;
export {};
