export declare const unslash: (str: string) => string;
/**
 * add slash from last of url or string
 * @param str
 * @returns
 */
export declare const adslash: (str: string) => string;
type SitemapOptions = {
    baseURL?: string;
    outputDir?: string;
    urls?: string[];
    filename?: string;
};
export default function sitemap(options?: SitemapOptions): {
    name: string;
    writeBundle(options: {
        dir: string;
    }): Promise<void>;
};
export {};
