import { Connection, type FieldSpec, type SchemaResponse } from "./Connection";
export declare class DummyConnection extends Connection {
    protected readonly supported: {
        batching: boolean;
    };
    constructor();
    getFieldSchema(spec: FieldSpec, strict?: boolean): SchemaResponse;
}
