import { ServiceStandardsService } from './service-standards.service';
export declare class ServiceStandardsController {
    private service;
    constructor(service: ServiceStandardsService);
    findAll(): Promise<{
        id: number;
        createdAt: Date;
        updatedAt: Date;
        orderNo: number;
        title: string;
        content: string;
    }[]>;
    create(data: {
        title: string;
        content: string;
        orderNo?: number;
    }): Promise<{
        id: number;
        createdAt: Date;
        updatedAt: Date;
        orderNo: number;
        title: string;
        content: string;
    }>;
    update(id: string, data: {
        title?: string;
        content?: string;
        orderNo?: number;
    }): Promise<{
        id: number;
        createdAt: Date;
        updatedAt: Date;
        orderNo: number;
        title: string;
        content: string;
    }>;
    remove(id: string): Promise<{
        id: number;
        createdAt: Date;
        updatedAt: Date;
        orderNo: number;
        title: string;
        content: string;
    }>;
}
