import { type SingleConf, type PagedConf, type BlogConf } from '../url/mutators';
/**
 * Configuration object
 */
export type BuildConf = BlogConf & SingleConf & PagedConf;
/**
 * An in-place url mutator
 * * returns true for final url
 */
export type BuildMutator = (url: URL, conf: BuildConf) => void | boolean;
/**
 * Url builder, creates blogger urls
 */
export declare const make: (conf: BuildConf) => URL | null;
