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