import * as react_jsx_runtime from 'react/jsx-runtime'; import { PropsWithChildren } from 'react'; interface ElevatedAccessProps extends PropsWithChildren { onVerified?: () => Promise; type?: "dialog" | "alert"; } declare function ElevatedAccess({ type, children, onVerified, }: ElevatedAccessProps): react_jsx_runtime.JSX.Element | null; export { ElevatedAccess };