import React from "react"; export interface EmptyElementGroupViewProps { icon: React.ReactElement; title: string; body: string; } declare const EmptyElementGroupView: ({ icon, title, body }: EmptyElementGroupViewProps) => React.JSX.Element; export default EmptyElementGroupView;