AmConfig: {
    createConfigEntityExportTemplate(
        realms?: string[],
    ): Promise<ConfigEntityExportInterface>;
    exportAmConfigEntities(
        includeReadOnly: boolean,
        onlyRealm: boolean,
        onlyGlobal: boolean,
        resultCallback?: ResultCallback<AmConfigEntityInterface>,
    ): Promise<ConfigEntityExportInterface>;
    importAmConfigEntities(
        importData: ConfigEntityExportInterface,
        resultCallback?: ResultCallback<AmConfigEntityInterface>,
    ): Promise<ConfigSkeleton>;
}

Type declaration