import { Case, CaseResult, Creditor, CreditSearchAddressResult, Document, NoteRequest } from '../types'; import { Service } from './service'; export declare class Submission extends Service { private options; createFullCase(fullCase: Case): Promise; addAddresses(caseInformation: CaseResult, addresses: CreditSearchAddressResult[]): Promise; addNotes(caseInformation: CaseResult, notes: NoteRequest): Promise; addCreditors(caseInformation: CaseResult, creditors: Creditor[]): Promise; addCreditor(caseInformation: CaseResult, creditor: Creditor): Promise; addDocuments(caseInformation: CaseResult, documents: Document[]): Promise; addDocument(caseInformation: CaseResult, document: Document): Promise; }