import { IFileReplacerAuth } from './IFileReplacer';
/**
 * Implementation of the swift auth strategy. Uses username and password.
 */
export declare class SwiftAuth implements IFileReplacerAuth {
    private username;
    private password;
    constructor(username: string, password: string);
    getAuthHeaders(host: string): Promise<{
        'x-auth-token': any;
    }>;
}
