import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; import { OrganizationDomain } from '../api/endpoint.js'; import '@tanstack/react-query'; import '../api/widgets-api-client.js'; interface DeleteDomainDialogProps { children?: React.ReactNode; domain: OrganizationDomain; onDeleteDomain: (domainId: string) => void; open: boolean; onOpenChange: (open: boolean) => void; } declare const DeleteDomainDialog: (props: DeleteDomainDialogProps) => react_jsx_runtime.JSX.Element; export { DeleteDomainDialog };