export declare const ResourceProtocols: readonly ["http"]; export type ResourceProtocol = (typeof ResourceProtocols)[number]; export declare const HttpMethods: readonly ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]; export type HttpMethod = (typeof HttpMethods)[number]; export type Resource = { id?: string; protocol: ResourceProtocol; method: HttpMethod; path: string; }; //# sourceMappingURL=Resource.d.ts.map