import { type BuildMutator } from '../../url';
export type BlogConf = {
    blog: URL;
} | {
    blog: 'blogger';
    blogId: string;
};
/**
 * Ensures url structure compatibility
 * * applies shared configs to all flows
 */
export declare const blog: BuildMutator;
