import type { Indent, Options } from "../types.d.cts"; export declare const getIndent: (indent: Options["indent"], depth: Options["depth"]) => Indent | undefined; export declare const indentedJoin: (values: string, indent: Indent) => string;