///
import type { ArcgisSolutionsAssistant } from "../components/arcgis-solutions-assistant/customElement.js";
import type { BufferTools } from "../components/buffer-tools/customElement.js";
import type { CardManager } from "../components/card-manager/customElement.js";
import type { ConsentManager } from "../components/consent-manager/customElement.js";
import type { CreateFeature } from "../components/create-feature/customElement.js";
import type { CreateRelatedFeature } from "../components/create-related-feature/customElement.js";
import type { CrowdsourceManager } from "../components/crowdsource-manager/customElement.js";
import type { CrowdsourceReporter } from "../components/crowdsource-reporter/customElement.js";
import type { DeductCalculator } from "../components/deduct-calculator/customElement.js";
import type { DeleteButton } from "../components/delete-button/customElement.js";
import type { DeleteDialog } from "../components/delete-dialog/customElement.js";
import type { EditCard } from "../components/edit-card/customElement.js";
import type { FeatureDetails } from "../components/feature-details/customElement.js";
import type { FeatureList } from "../components/feature-list/customElement.js";
import type { FieldSelection } from "../components/field-selection/customElement.js";
import type { InfoCard } from "../components/info-card/customElement.js";
import type { LayerList } from "../components/layer-list/customElement.js";
import type { LayerListWidget } from "../components/layer-list-widget/customElement.js";
import type { LayerTable } from "../components/layer-table/customElement.js";
import type { MapBasemapGallery } from "../components/map-basemap-gallery/customElement.js";
import type { MapCard } from "../components/map-card/customElement.js";
import type { MapDrawTools } from "../components/map-draw-tools/customElement.js";
import type { MapFloorFilter } from "../components/map-floor-filter/customElement.js";
import type { MapFullscreen } from "../components/map-fullscreen/customElement.js";
import type { MapLayerPicker } from "../components/map-layer-picker/customElement.js";
import type { MapLegend } from "../components/map-legend/customElement.js";
import type { MapPicker } from "../components/map-picker/customElement.js";
import type { MapSearch } from "../components/map-search/customElement.js";
import type { MapSelectTools } from "../components/map-select-tools/customElement.js";
import type { MapTools } from "../components/map-tools/customElement.js";
import type { PciCalculator } from "../components/pci-calculator/customElement.js";
import type { PdfDownload } from "../components/pdf-download/customElement.js";
import type { PublicNotification } from "../components/public-notification/customElement.js";
import type { RefineSelection } from "../components/refine-selection/customElement.js";
import type { SelectionTool } from "../components/selection-tool/customElement.js";
import type { SolutionBuilderAssistant } from "../components/solution-builder-assistant/customElement.js";
import type { SolutionConfigureTitles } from "../components/solution-configure-titles/customElement.js";
import type { SolutionDeleteDialog } from "../components/solution-delete-dialog/customElement.js";
import type { SolutionDeployDialog } from "../components/solution-deploy-dialog/customElement.js";
import type { SolutionDeployedCard } from "../components/solution-deployed-card/customElement.js";
import type { SolutionDeployedCardPanel } from "../components/solution-deployed-card-panel/customElement.js";
import type { SolutionDeployingDialog } from "../components/solution-deploying-dialog/customElement.js";
import type { SolutionDetailsCard } from "../components/solution-details-card/customElement.js";
import type { SolutionDetailsPanel } from "../components/solution-details-panel/customElement.js";
import type { SolutionItemAccordion } from "../components/solution-item-accordion/customElement.js";
import type { SolutionItemDiagram } from "../components/solution-item-diagram/customElement.js";
import type { SolutionItemIcon } from "../components/solution-item-icon/customElement.js";
import type { SolutionResourceCard } from "../components/solution-resource-card/customElement.js";
import type { SolutionSnapshotGallery } from "../components/solution-snapshot-gallery/customElement.js";
import type { SolutionSocialShare } from "../components/solution-social-share/customElement.js";
import type { SolutionUserAvatar } from "../components/solution-user-avatar/customElement.js";
import type { SolutionsAllPanel } from "../components/solutions-all-panel/customElement.js";
import type { SolutionsAllShell } from "../components/solutions-all-shell/customElement.js";
import type { SolutionsDeployApp } from "../components/solutions-deploy-app/customElement.js";
import type { SolutionsDeployAppNav } from "../components/solutions-deploy-app-nav/customElement.js";
import type { SolutionsDeployedList } from "../components/solutions-deployed-list/customElement.js";
import type { SolutionsDeployedPanel } from "../components/solutions-deployed-panel/customElement.js";
import type { SolutionsDeployedShell } from "../components/solutions-deployed-shell/customElement.js";
import type { SolutionsFilterPanel } from "../components/solutions-filter-panel/customElement.js";
import type { SolutionsResourcesSection } from "../components/solutions-resources-section/customElement.js";
import type { SolutionsResourcesShell } from "../components/solutions-resources-shell/customElement.js";
import type { SolutionsSearchSortToolbar } from "../components/solutions-searchsort-toolbar/customElement.js";
import { HTMLAttributes } from "preact";
import type { EventHandler } from "@arcgis/lumina";
interface PreactArcgisSolutionsAssistant extends Partial>, HTMLAttributes {
onassistantProcessing?: EventHandler;
oncloseAssistant?: EventHandler;
}
interface PreactBufferTools extends Partial>, HTMLAttributes {
onbufferComplete?: EventHandler;
ondistanceChanged?: EventHandler;
onunitChanged?: EventHandler;
}
interface PreactCardManager extends Partial>, HTMLAttributes {
onbackFromCreateWorkFlow?: EventHandler;
oncreateWorkFlowStarted?: EventHandler;
ondisablePaste?: EventHandler;
onfeaturesCopied?: EventHandler;
onfeaturesPasted?: EventHandler;
}
interface PreactConsentManager extends Required>, Partial>, HTMLAttributes {
onconsentGranted?: EventHandler;
}
interface PreactCreateFeature extends Partial>, HTMLAttributes {
onactiveFeatureCountChange?: EventHandler;
oncreateFeatureEditorClosed?: EventHandler;
oncreateFeatureEditorInitialized?: EventHandler;
ondrawComplete?: EventHandler;
oneditingAttachment?: EventHandler;
oneditingLocation?: EventHandler;
onfail?: EventHandler;
onmodeChanged?: EventHandler;
onprogressStatus?: EventHandler;
onsuccess?: EventHandler;
}
interface PreactCreateRelatedFeature extends Partial>, HTMLAttributes {
onfail?: EventHandler;
onformReady?: EventHandler;
onisActionPending?: EventHandler;
onsuccess?: EventHandler;
}
interface PreactCrowdsourceManager extends Partial>, HTMLAttributes {
onshowCoverPage?: EventHandler;
onshowIntroductionWindow?: EventHandler;
}
interface PreactCrowdsourceReporter extends Partial>, HTMLAttributes {
ontogglePanel?: EventHandler;
}
interface PreactDeductCalculator extends HTMLAttributes {
ondeductValueComplete?: EventHandler;
}
interface PreactDeleteButton extends Partial>, HTMLAttributes {
ondeleteClicked?: EventHandler;
oneditsComplete?: EventHandler;
}
interface PreactDeleteDialog extends Partial>, HTMLAttributes {
ondeleteDialogClose?: EventHandler;
oneditsComplete?: EventHandler;
}
interface PreactEditCard extends Partial>, HTMLAttributes {
oncloseEdit?: EventHandler;
oncreatingFeature?: EventHandler;
oneditorInitialized?: EventHandler;
oneditsComplete?: EventHandler;
onrefreshGraphics?: EventHandler;
}
interface PreactFeatureDetails extends Partial>, HTMLAttributes {
onaddComment?: EventHandler;
oncommentClick?: EventHandler;
oncommentSelect?: EventHandler;
onfeatureSelectionChange?: EventHandler;
onlikeOrDislikeClicked?: EventHandler;
onloadingStatus?: EventHandler;
}
interface PreactFeatureList extends Partial>, HTMLAttributes {
onfeatureClick?: EventHandler;
onfeatureSelect?: EventHandler;
}
interface PreactFieldSelection extends Partial>, HTMLAttributes {
}
interface PreactInfoCard extends Partial>, HTMLAttributes {
onclearSelection?: EventHandler;
oncopyFeatures?: EventHandler;
onpasteFeatures?: EventHandler;
onpopupClosed?: EventHandler;
onselectionChanged?: EventHandler;
}
interface PreactLayerList extends Partial>, HTMLAttributes {
onlayerSelect?: EventHandler;
onlayersListLoaded?: EventHandler;
}
interface PreactLayerListWidget extends Partial>, HTMLAttributes {
}
interface PreactLayerTable extends Partial>, HTMLAttributes {
onbeforeFeatureSelectionChange?: EventHandler;
oncolumnReorder?: EventHandler;
oncontinueEditing?: EventHandler;
oncopyFeatures?: EventHandler;
oneditMultipleFeatures?: EventHandler;
onfeaturesAdded?: EventHandler;
onfeatureSelectionChange?: EventHandler;
oninitCreateComponent?: EventHandler;
onpasteFeatures?: EventHandler;
onrelatedRecordToggled?: EventHandler;
onrequestLayerSelectionChange?: EventHandler;
onshowDelete?: EventHandler;
ontoggleFilter?: EventHandler;
}
interface PreactMapBasemapGallery extends Partial>, HTMLAttributes {
}
interface PreactMapCard extends Partial>, HTMLAttributes {
onbeforeMapChanged?: EventHandler;
onclearSelection?: EventHandler;
oncopyFeatures?: EventHandler;
oneditMultipleFeatures?: EventHandler;
onfeaturesCopied?: EventHandler;
onmapChanged?: EventHandler;
onpasteFeatures?: EventHandler;
ontoggleFilter?: EventHandler;
}
interface PreactMapDrawTools extends Partial>, HTMLAttributes {
ondrawRedo?: EventHandler;
ondrawUndo?: EventHandler;
onselectionLoadingChange?: EventHandler;
onsketchGraphicsChange?: EventHandler;
}
interface PreactMapFloorFilter extends Partial>, HTMLAttributes {
onfacilityChanged?: EventHandler;
onlevelChanged?: EventHandler;
onsiteChanged?: EventHandler;
}
interface PreactMapFullscreen extends Partial>, HTMLAttributes {
onfullscreenStateChange?: EventHandler;
}
interface PreactMapLayerPicker extends Partial>, HTMLAttributes {
onbeforeLayerSelectionChange?: EventHandler;
onidsFound?: EventHandler;
onlayerSelectionChange?: EventHandler;
onnoLayersFound?: EventHandler;
}
interface PreactMapLegend extends Partial>, HTMLAttributes {
}
interface PreactMapPicker extends Partial>, HTMLAttributes {
onbeforeMapInfoChange?: EventHandler;
onmapInfoChange?: EventHandler;
}
interface PreactMapSearch extends Partial>, HTMLAttributes {
}
interface PreactMapSelectTools extends Partial>, HTMLAttributes {
onselectionSetChange?: EventHandler;
}
interface PreactMapTools extends Partial>, HTMLAttributes {
onclearSelection?: EventHandler;
}
interface PreactPciCalculator extends HTMLAttributes {
}
interface PreactPdfDownload extends Partial>, HTMLAttributes {
}
interface PreactPublicNotification extends Partial>, HTMLAttributes {
onsearchConfigurationChange?: EventHandler;
}
interface PreactRefineSelection extends Partial>, HTMLAttributes {
onselectionLoadingChange?: EventHandler;
onselectionSetsChanged?: EventHandler;
}
interface PreactSelectionTool extends Partial>, HTMLAttributes {
ondrawingComplete?: EventHandler;
onfeaturesSelected?: EventHandler;
}
interface PreactSolutionBuilderAssistant extends Partial>, HTMLAttributes {
ondiscardBuilder?: EventHandler;
}
interface PreactSolutionConfigureTitles extends Partial>, HTMLAttributes {
onsolutionConfigureTitlesBeforeClose?: EventHandler;
onsolutionItemsTitlesChanged?: EventHandler;
}
interface PreactSolutionDeleteDialog extends Required>, Partial>, HTMLAttributes {
onsolutionDeleted?: EventHandler;
onsolutionDeleteDialogBeforeClose?: EventHandler;
onsolutionDeleteDialogOpen?: EventHandler;
}
interface PreactSolutionDeployDialog extends Partial>, HTMLAttributes {
ondeployCancelled?: EventHandler;
ondeployFailed?: EventHandler;
ondeployProgressEnd?: EventHandler;
ondeployProgressStart?: EventHandler;
ondeployProgressUpdated?: EventHandler;
}
interface PreactSolutionDeployedCard extends Partial>, HTMLAttributes {
ondeployedCardSelected?: EventHandler;
}
interface PreactSolutionDeployedCardPanel extends Partial>, HTMLAttributes {
onforceSelectTab?: EventHandler;
onnavTabSelected?: EventHandler;
onsolutionConfigureDialogClose?: EventHandler;
onsortTypeChanged?: EventHandler;
}
interface PreactSolutionDeployingDialog extends Partial>, HTMLAttributes {
ondeployingDialogOpened?: EventHandler;
ondeploymentProcessCancelled?: EventHandler;
}
interface PreactSolutionDetailsCard extends Partial>, HTMLAttributes {
ondetailsCardSelected?: EventHandler;
}
interface PreactSolutionDetailsPanel extends Partial>, HTMLAttributes {
onitemPropertiesFetched?: EventHandler;
onsortTypeChanged?: EventHandler;
ontemplatesFetched?: EventHandler;
ontokenRefreshed?: EventHandler;
}
interface PreactSolutionItemAccordion extends Partial>, HTMLAttributes {
onsolutionItemHover?: EventHandler;
onsolutionItemSelect?: EventHandler;
onsolutionTypeHover?: EventHandler;
}
interface PreactSolutionItemDiagram extends Partial>, HTMLAttributes {
}
interface PreactSolutionItemIcon extends Partial>, HTMLAttributes {
}
interface PreactSolutionResourceCard extends Partial>, HTMLAttributes {
}
interface PreactSolutionSnapshotGallery extends Partial>, HTMLAttributes {
}
interface PreactSolutionSocialShare extends Partial>, HTMLAttributes {
}
interface PreactSolutionUserAvatar extends Partial>, HTMLAttributes {
}
interface PreactSolutionsAllPanel extends Partial>, HTMLAttributes {
onallCardsFetched?: EventHandler;
oncardsFetched?: EventHandler;
ondetailsCardSelected?: EventHandler;
onsearchTermSet?: EventHandler;
onsortTypeSet?: EventHandler;
}
interface PreactSolutionsAllShell extends Partial>, HTMLAttributes {
onfilterRemoved?: EventHandler;
}
interface PreactSolutionsDeployApp extends Partial>, HTMLAttributes {
ondeployAppTabSelected?: EventHandler;
ondeployedCardFetchFailed?: EventHandler;
ondeployedCardSelected?: EventHandler;
ondetailsCardSelected?: EventHandler;
onmetaTagStringsReady?: EventHandler;
onsessionRefreshed?: EventHandler;
ontabChanged?: EventHandler;
}
interface PreactSolutionsDeployAppNav extends Partial>, HTMLAttributes {
onauthInit?: EventHandler;
onnavTabSelected?: EventHandler;
ontabChanged?: EventHandler;
ontokenRefreshed?: EventHandler;
}
interface PreactSolutionsDeployedList extends Partial>, HTMLAttributes {
ondeployedCardSelected?: EventHandler;
}
interface PreactSolutionsDeployedPanel extends Partial>, HTMLAttributes {
ondeployedCardsFetched?: EventHandler;
onsearchTermSet?: EventHandler