import { UUIFormControlMixinInterface } from '../mixins';
import { UUIEvent } from './UUIEvent';
export declare class UUIFormControlEvent extends UUIEvent<{}, UUIFormControlMixinInterface<unknown>> {
    constructor(evName: string, eventInit?: any | null);
    static readonly VALID = "valid";
    static readonly INVALID = "invalid";
}
