import React from 'react';
type Props = {
items: Array<{
title: string;
href?: string;
}>;
};
export default function Render(props: Props): React.JSX.Element;
export {};