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