import type { BusinessNotesResponse, DealNotesResponse, IndividualNotesResponse } from '@/client'; import type { DeepPartial } from './factory.util'; export declare class NoteFactory { static createBusinessNote(overrides?: DeepPartial): BusinessNotesResponse; static createBusinessNoteList(count: number, overrides?: DeepPartial): BusinessNotesResponse[]; static createDealNote(overrides?: DeepPartial): DealNotesResponse; static createDealNoteList(count: number, overrides?: DeepPartial): DealNotesResponse[]; static createIndividualNote(overrides?: DeepPartial): IndividualNotesResponse; static createIndividualNoteList(count: number, overrides?: DeepPartial): IndividualNotesResponse[]; }