import type { ServerBuild } from "@remix-run/server-runtime";
import { GenerateSitemapArgs } from "../types";
declare type Options = {
    siteUrl: string;
};
declare function getSitemapXml(args: GenerateSitemapArgs, routes: ServerBuild["routes"], options: Options): Promise<string>;
export { getSitemapXml };
