/// <reference types="react" />
interface LinkerProps {
    link: string;
    title: string;
    type?: 'prev' | 'next';
}
declare const Linker: import("react").NamedExoticComponent<LinkerProps>;
export default Linker;
