import type { Plugin } from 'payload';
export interface RecentlyVisitedPluginOptions {
    /**
     * Enable or disable plugin
     * @default undefined
     */
    enabled: boolean;
    /**
     * Admin user collection slug
     * @default 'users'
     */
    adminUsersCollectionSlug?: string;
    /**
     * CSS class for the breadcrumb last element
     * – its useful if you have custom navigation, it expects the last item of the breadcrumb
     * @default '.step-nav__last'
     */
    breadcrumbClass?: string;
}
export declare const recentlyVisited: (pluginOptions: RecentlyVisitedPluginOptions) => Plugin;
