export declare enum FieldRootDataAttributes {
    /**
     * Present when the field is disabled.
     */
    disabled = "data-disabled",
    /**
     * Present when the field has been touched.
     */
    touched = "data-touched",
    /**
     * Present when the field's value has changed.
     */
    dirty = "data-dirty"
}
