import { Controller } from './Controller.ts'; /** * Watch when given attributes change on the component element. * * Documentation: https://webgis.esri.com/references/lumina/controllers/useWatchAttributes */ export declare const useWatchAttributes: (attributes: readonly T[], callback: (newValue: string | null, oldValue: string | null, attribute: T) => void) => Controller;