import type { UiProps } from '@tolgee/core'; export type ComponentDependencies = UiProps; export type KeyData = { key: null | string; defaultValue: undefined | string; fallbackNamespaces: string[]; namespace: string; }; export type Props = { uiProps: UiProps; keyData: KeyData; }; export declare const KeyDialog: ({ uiProps, keyData }: Props) => import("react/jsx-runtime").JSX.Element;