import * as React from 'react';
export interface Item {
    to: string;
    title: React.ReactNode;
}
export interface Props {
    left?: Item;
    right?: Item;
}
export declare const NextBlock: React.FC<Props>;
