import { AppService } from './app.service';
import { SetupService } from './services/setup.service';
declare class TestBody {
    body: any;
}
export declare class AppController {
    private readonly appService;
    private readonly setupService;
    constructor(appService: AppService, setupService: SetupService);
    getHello(): Promise<string>;
    testChecksumGenerator(): void;
    jsonToXML(body: TestBody): string;
    xmlToJson(body: TestBody): unknown;
}
export {};
