import { AttrState, FormButtonParams, FormItem } from './help';
export declare class FormButton implements FormItem {
    private config;
    elementRef: HTMLElement;
    name: string;
    constructor(config: FormButtonParams);
    reset(): void;
    update(): void;
    getAttr(): AttrState<any>;
    validate(): boolean;
}
