import React from "react";
export interface Recent {
    windowTitle: string;
    url: string;
    lastVisited: string;
}
export interface RecentsProps {
    onBeforeRemove?: (items: Recent[]) => boolean;
    namespace?: string;
}
declare const Recents: React.FC<RecentsProps>;
export default Recents;
