import { AllOptions } from './process'; /** * The synchronous method for process */ declare function processSync(type: 'auto', pathString: string | string[], opts?: AllOptions['auto']): void; declare function processSync(type: 'css', pathString: string | string[], opts?: AllOptions['css']): void; declare function processSync(type: 'js', pathString: string | string[], opts?: AllOptions['js']): void; declare function processSync(type: 'html', pathString: string | string[], opts?: AllOptions['html']): void; declare function processSync(type: 'pug', pathString: string | string[], opts?: AllOptions['pug']): void; declare function processSync(type: 'any', pathString: string | string[], opts?: AllOptions['any']): void; export default processSync;