import type { Commands, KeysOf, TemplateData } from './types'; /** Parses and evaluates a template string. */ export declare function consume>[]>(start: number, end: number, templates: string[], data: D, keys: Commands[]): string; /** Parses and evaluates a single template and key of a template string. */ export declare function consumeStep>[]>(templates: string[], data: D, keys: Commands[], index: number): { code?: string; nextIndex?: number; }; //# sourceMappingURL=consume.d.ts.map