export const Provider: typeof DID; /** * Capability can be invoked by the provider or an authorized delegate to add a rate limit to a subject. */ export const add: import("@ucanto/interface").TheCapabilityParser, Schema.InferStruct<{ subject: Schema.StringSchema; rate: Schema.NumberSchema; }>>>; /** * Capability can be invoked by the provider are an authorized delegate to remove rate limits from a subject. */ export const remove: import("@ucanto/interface").TheCapabilityParser, Schema.InferStruct<{ id: Schema.StringSchema; }>>>; /** * Capability can be invoked by the provider or an authorized delegate to list rate limits on the given subject */ export const list: import("@ucanto/interface").TheCapabilityParser, Schema.InferStruct<{ subject: Schema.StringSchema; }>>>; import { DID } from '@ucanto/validator'; import { Schema } from '@ucanto/validator'; //# sourceMappingURL=rate-limit.d.ts.map