/** * Command template expansion for custom PDF converters. * * Placeholders: * - {input} — absolute path to input PDF * - {output} — absolute path to desired output Markdown * - {input_dir} — directory of input file * - {input_name} — filename of input file * - {output_name} — filename of output file */ export interface TemplateVars { input: string; output: string; } export declare function expandTemplate(template: string, vars: TemplateVars): string; //# sourceMappingURL=command-template.d.ts.map