import type { BaseClientOptions } from "./client"; import { Documents } from "./documents"; import { Ledger } from "./ledger"; import { Start } from "./start"; export type StructuredParserOptions = BaseClientOptions; export declare class StructuredParser { ledger: Ledger; documents: Documents; start: Start; constructor(options: StructuredParserOptions); static fromApiKey(apiKey: string): StructuredParser; }