import React from 'react';
export interface NextAndPrevProps {
    next?: {
        fields: {
            slug: string;
        };
        frontmatter: {
            title: string;
        };
    };
    prev?: {
        fields: {
            slug: string;
        };
        frontmatter: {
            title: string;
        };
    };
}
declare const NextAndPrev: React.FC<NextAndPrevProps>;
export default NextAndPrev;
//# sourceMappingURL=NextAndPrev.d.ts.map