export declare const $$arrayHints: unique symbol; export type WithArrayHints = T & { [$$arrayHints]?: string[]; }; /** * Appends the entries from `extra` into `base` tracking the `hint` as to when * they were added. If a conflict is found (where `base` already has an entry * with the same `identity(item)` as a new item) an error will be thrown * describing what happened. */ export default function append(base: WithArrayHints, extra: WithArrayHints>, getIdentity: keyof T | ((entry: T) => ID), hint: string): T[]; //# sourceMappingURL=append.d.ts.map