import { ServerTypeInput } from "./getInputs"; export declare const DOC_BLOCK_DEFAULT: (input: ServerTypeInput) => string; interface AddLineProps { key?: string; value?: string | unknown | undefined | null; raw?: string; } export declare const addLine: ({ key, value, raw }: AddLineProps) => string; export declare const addPunctuation: (value: string | undefined) => string; export {};