import { AboutService } from './about.service';
import { AboutResponseDto } from './dto/about-response.dto';
export declare class AboutController {
    private readonly aboutService;
    constructor(aboutService: AboutService);
    get(): Promise<AboutResponseDto>;
}
