import { AppContentService } from "./app-content.service";
import { CreateAppContentDto } from "./dto/create-app-content.dto";
import { UpdateAppContentDto } from "./dto/update-app-content.dto";
import { AppContentFilterDto } from "./dto/app-content-filter.dto";
export declare class AppContentController {
    private readonly appContentService;
    constructor(appContentService: AppContentService);
    create(dto: CreateAppContentDto): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    findAll(query: AppContentFilterDto): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    findOne(id: string): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    update(id: string, dto: UpdateAppContentDto): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    remove(id: string): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
}
