import type { PugFmtOptions } from './options/types'; /** * Format a Pug string. * * @param content The pug content to format. * @param options The options to use. * @returns The formatted pug content. */ export declare function format(content: string, options: PugFmtOptions): string;