import { NodeChildren, ParseOptions } from "./index"; export interface PrettyOptions { /** * indent string or number of spaces * e.g. "\t" or 4 */ indent?: string | number; } /** * Pretty input nodes * * @param nodes * @param options */ export declare function prettyNodes(nodes: NodeChildren, options?: PrettyOptions): NodeChildren; /** * Pretty input html * * @param html * @param options */ export declare function pretty(html: string, options?: PrettyOptions & ParseOptions): string;