import { type Snippet } from '../../data/snippet.ts';
type ValueOrArray<T> = T | readonly T[];
/**
 * "The reverse of snipping"
 * Injects resolved snippets into a template string.
 */
export declare function stitch(strings: TemplateStringsArray, ...snippets: ValueOrArray<Snippet | string | number | undefined>[]): string;
export {};
