export declare const createBasicAuth: (username: string, password: string) => string;
export declare const parseBasicAuth: (auth: string) => {
    username: string;
    password: string;
};
