import { AllOptions } from '../process'; declare function typeChooserSync(processType: 'pug'): (pathString: string | string[], opts?: AllOptions['html']) => void; declare function typeChooserSync(processType: 'any'): (pathString: string | string[], opts?: AllOptions['any']) => void; declare function typeChooserSync(processType: 'js'): (pathString: string | string[], opts?: AllOptions['js']) => void; declare function typeChooserSync(processType: 'html'): (pathString: string | string[], opts?: AllOptions['html']) => void; declare function typeChooserSync(processType: 'css'): (pathString: string | string[], opts?: AllOptions['css']) => void; declare function typeChooserSync(processType: 'auto'): (pathString: string | string[], opts?: AllOptions['auto']) => void; export default typeChooserSync;