export declare function append<A>(el: A, coll: A[]): A[];
export declare function append(tail: string, head: string): string;
export declare function append<A>(tail: A): <B extends A extends string ? string | string[] : A[]>(head: B) => B extends string ? string : B;
