export declare function authHeader(): {
    Authorization: string;
} | {
    Authorization?: undefined;
};
export declare function authHeaderWithContentType(): {
    "Content-type": string;
    accept: string;
    Authorization: string;
} | {
    "Content-type"?: undefined;
    accept?: undefined;
    Authorization?: undefined;
};
