declare type Sections = Record>; declare type Methods = Record; /** * @description Takes a decorated api section (e.g. api.tx) and augment it with the details. It does not override what is * already available, but rather just adds new missing items into the result object. * @internal */ export declare function augmentObject(prefix: string | null, src: Sections, dst: Sections, fromEmpty?: boolean): Sections; export {};