export declare enum RequestMethods {
    GET = "GET",
    POST = "POST",
    PUT = "PUT",
    PATCH = "PATCH",
    DELETE = "DELETE"
}
export interface ApiEndpoints {
    key: string;
    name: string;
    url: string;
    method: RequestMethods;
    description?: string;
    documentationUrl?: string;
}
export interface ApiModule {
    default?: boolean;
    endpoints?: ApiEndpoints[];
    docFile?: string;
}
