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