import { Application } from '../Application';
import { TransformSwitch } from './switch';
import { TransformOptions } from '../types';
declare class Transform extends TransformSwitch {
constructor(app: Application);
setup(options: TransformOptions): void;
}
export { Transform };