import { Importer, ImportResult } from "../../types";
/**
 * Import issues from a Generic CSV export.
 * @param filePath Path to CSV file
 * @prarm sdk API
 */
export declare class GenericCsvImporter implements Importer {
    constructor(filePath: string);
    get name(): string;
    get defaultTeamName(): string;
    import: () => Promise<ImportResult>;
    private filePath;
}
//# sourceMappingURL=GenericCsvImporter.d.ts.map