export declare enum BuiltinRoutePath {
    AUTH_CALLBACK = "/auth/callback",
    UPLOAD = "/upload",
    HEARTBEAT = "/heartbeat"
}
export declare function isBuiltinRoutePath(path: string): path is BuiltinRoutePath;
