interface LinkDialogProps { /** The initial URL value */ initialUrl?: string; /** The initial display text value */ initialText?: string; /** Whether to show the text input field (hide when text is already selected) */ showTextInput?: boolean; /** Whether this is edit mode (changes title and button text) */ isEditMode?: boolean; /** When true, focus the Link field on mount instead of the Text field */ focusLinkField?: boolean; /** Callback when the link is submitted */ onSubmit: (url: string, displayText?: string) => void; /** Callback when the dialog is cancelled */ onCancel: () => void; } /** * CometChatLinkDialog - A dialog for adding/editing hyperlinks * Shows URL input and optional display text input */ export declare function CometChatLinkDialog(props: LinkDialogProps): import("react/jsx-runtime").JSX.Element; export {};