import { LastLoginMethodLocalization } from './last-login-method-localization';
export type LastLoginMethodPluginOptions = {
    /**
     * Override the plugin's default localization strings.
     * @remarks `LastLoginMethodLocalization`
     */
    localization?: Partial<LastLoginMethodLocalization>;
};
/**
 * Enables last-login-method indicators in supported authentication views.
 *
 * Pair this UI plugin with Better Auth's `lastLoginMethod()` server plugin
 * and `lastLoginMethodClient()` client plugin.
 */
export declare const lastLoginMethodPlugin: ((options?: LastLoginMethodPluginOptions | undefined) => {
    localization: {
        lastUsed: string;
        lastUsedShort: string;
    };
} & {
    id: "lastLoginMethod";
}) & {
    id: "lastLoginMethod";
};
