import { PasswordManager, HtmlAttributes } from '../types';
import { BasePasswordManagerProvider } from './base';
/**
 * Dashlane provider implementation
 * Uses the data-form-type attribute to prevent autofill
 */
export declare class DashlaneProvider extends BasePasswordManagerProvider {
    readonly manager = PasswordManager.DASHLANE;
    /**
     * Get attributes that prevent Dashlane from interacting with the field
     * @returns HTML attributes for Dashlane ignore behavior
     */
    protected getIgnoreAttributes(): HtmlAttributes;
}
//# sourceMappingURL=dashlane.d.ts.map