import { Api } from "./api.js";
export declare abstract class Extension<Name extends string, Paths, Defaults extends Record<string, unknown> = Record<string, unknown>> extends Api<Paths, Defaults> {
    abstract readonly name: Name;
}
