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