export declare const getComponentList: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getComponentDetail: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getComponentFileContent: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const createComponentFromSchema: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const removeComponent: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const updateComponent: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
