import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; import { RootProps } from '@radix-ui/themes/components/alert-dialog'; interface LogoutAllSessionsDialogProps extends RootProps { children?: ReactNode; currentSessionId: string; } declare function LogoutAllSessionsDialog({ open, onOpenChange, children, currentSessionId, ...props }: LogoutAllSessionsDialogProps): react_jsx_runtime.JSX.Element; export { LogoutAllSessionsDialog };