import { APIAuthType } from "./getApiAuthType";
/**
 * Merge two APIAuthType arrays into one, without duplicates.
 * Can return undefined if both parameters are not an array.
 */
export declare function mergeApiAuthTypes(existing: APIAuthType[] | undefined, newAuth: APIAuthType[] | undefined): APIAuthType[] | undefined;
