/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; interface PermissionsDialogProps { onExit: () => void; } export declare function PermissionsDialog({ onExit }: PermissionsDialogProps): React.JSX.Element; export {};