interface Copy { aria_label_close_drawer: string; aria_label_thumbs_down: string; aria_label_thumbs_up: string; benefits_list_array: string[]; connection_details_drawer_title: string; description: string; footer_title: string; header_text: string; shared_info_description: string; shared_info_header_text: string; shared_info_list_array: Array<{ content: string; icon_name: string; title: string; }>; } interface ConnectionDetailsProps { copy: Copy; isOpen: boolean; onClose: () => void; sendResponseAnalytics: (str: string) => void; } declare const ConnectionDetails: ({ copy, isOpen, onClose, sendResponseAnalytics, }: ConnectionDetailsProps) => import("react/jsx-runtime").JSX.Element; export default ConnectionDetails;