import React from "react";
interface UrlListProp {
    data: {
        url: string;
        title: string;
    }[];
}
declare const UrlList: React.FC<UrlListProp>;
export default UrlList;
