interface BuildRobotsTxtInput {
    sitemapUrl: string;
    disallowPaths?: string[];
    allowAll?: boolean;
}
declare function buildRobotsTxt(input: BuildRobotsTxtInput): string;

export { type BuildRobotsTxtInput, buildRobotsTxt };
