export interface EndpointExample { source: string; payload: unknown; /** Canonical cost tier of this endpoint (see @apicity/cost). */ tier: "cheap" | "expensive" | "prohibitive"; /** Whether an example runner may execute this by default (cheap only). */ runByDefault: boolean; } declare const EXAMPLES: Record; export default EXAMPLES; export declare function attachExamples(provider: T): T; //# sourceMappingURL=example.d.ts.map