import { MethodObject, OpenrpcDocument } from "@open-rpc/meta-schema"; import { Call } from "../coverage"; import Rule from "./rule"; interface RulesOptions { skip: string[]; only: string[]; } declare class ExamplesRule implements Rule { private skip?; private only?; constructor(options?: RulesOptions); getTitle(): string; getCalls(openrpcDocument: OpenrpcDocument, method: MethodObject): Call[]; validateCall(call: Call): Call; } export default ExamplesRule;