import type Context from './Context';
export default class Autofill {
    private ctx;
    constructor(ctx: Context);
    private init;
    /**
     * 是否在填充
     * @returns
     */
    private isAutofillIng;
    private setMousedown;
    private setMouseUp;
    private setAutofill;
    /**
     * 填充数据
     */
    private autofillData;
    private mouseenter;
    destroy(): void;
}
