export declare const healthCheck: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getProjectMeta: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getProjectSchema: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getProjectLcapConfig: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const publish: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
export declare const getPreviewURL: {
    url: string;
    method: "GET" | "OPTIONS" | "POST" | "PUT" | "DELETE";
    handler: (req: import("../middleware").Request) => Promise<any>;
};
