export default indicesModel; declare namespace indicesModel { export { createIndices }; export { removeIndices }; export { indicesExists }; export { updateSchema }; export { updateSettings }; export { closeIndices }; export { openIndices }; } declare function createIndices(): Promise; declare function removeIndices(): Promise; declare function indicesExists(): Promise<{ indicesExist: boolean; }>; declare function updateSchema(): Promise; declare function updateSettings(): Promise; declare function closeIndices(): Promise; declare function openIndices(): Promise;