import Variables from './variables'; export declare function composePreprocessors(...args: any[]): any; export type Interpolator = (value: string, variables: Variables) => string; export declare function preprocessArray(interpolator: Interpolator): (items: [string, string][], variables: Variables) => string[][]; export declare function interpolateString(value: string, variables: Variables): string; export declare function interpolateScript(script: string, variables: Variables): { script: string; argv: any[]; }; //# sourceMappingURL=preprocessors.d.ts.map