export declare enum InputDataAttributes {
    /**
     * Present when the input is disabled.
     */
    disabled = "data-disabled",
    /**
     * Present when the input is in valid state.
     */
    valid = "data-valid",
    /**
     * Present when the input is in invalid state.
     */
    invalid = "data-invalid",
    /**
     * Present when the input has been touched.
     */
    touched = "data-touched",
    /**
     * Present when the input's value has changed.
     */
    dirty = "data-dirty"
}
