declare function unionStringOrArray<T = object | string>(start?: string | T[], end?: string | T[]): T[];

export { unionStringOrArray };
