import { Command } from '@oclif/core'; import { Manifest } from 'flair-sdk'; export declare function executeBackfill(command: Command, manifest: Manifest, apiKey: string, flags: { chain?: number[]; address?: string[]; 'address-csv'?: string[]; 'address-json'?: string[]; 'topic-hash'?: string[]; 'topic-abi'?: string[]; 'tx-hashes'?: string[]; 'tx-hashes-csv'?: string; 'block-range'?: string; 'scan-direction'?: string; 'max-blocks'?: string; 'batch-size'?: string; 'min-timestamp'?: string; 'max-timestamp'?: string; processor?: string[]; 'max-executors'?: number; mode?: string; emit?: string; 'skip-caching'?: boolean; 'log-level'?: string; context?: string; 'work-dir'?: string; 'auto-approve'?: boolean; 'idempotency-key'?: string; }): Promise;