import { ShortChannelId } from "@node-lightning/core";
export declare class QueryState {
    readonly firstBlock: number;
    readonly numBlocks: number;
    scids: ShortChannelId[];
    constructor(firstBlock: number, numBlocks?: number);
}
