export default class BabelRegister {
    only: Record<string, string[]>;
    constructor();
    setOnlyMap({ key, value }: {
        key: string;
        value: string[];
    }): void;
    register(): void;
}
