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