/** * Props for the UrlInputDialog component */ export type UrlInputDialogProps = { /** The trigger button element */ triggerButton: React.ReactElement; /** Label for the URL input field */ inputLabel?: string; /** Placeholder text for the URL input */ inputPlaceholder?: string; /** Callback function when URL is confirmed */ onConfirm: (url: string) => void; /** Callback function when dialog is cancelled */ onCancel?: () => void; /** Whether to automatically add https:// protocol if missing */ isAutoAddProtocol?: boolean; }; export declare const UrlInputDialog: ({ triggerButton, inputLabel, inputPlaceholder, onConfirm, onCancel, isAutoAddProtocol, }: UrlInputDialogProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=UrlInputDialog.d.ts.map