import { OverlayTriggerProps } from 'react-stately'; import React from 'react'; interface DialogActivatorProps extends OverlayTriggerProps { label: string; children: (close: () => void) => React.JSX.Element; } declare const DialogActivator: ({ label, children, ...props }: DialogActivatorProps) => import("react/jsx-runtime").JSX.Element; export { DialogActivator }; //# sourceMappingURL=DialogActivator.d.ts.map