type EmptyViewProps = { title?: string; description?: string; showArrow?: boolean; /** * Classes for internal elements */ customStyles?: { wrapper?: string; title?: string; description?: string; arrow?: string; }; }; declare function EmptyView({ title, description, showArrow, customStyles, }: EmptyViewProps): JSX.Element; export default EmptyView; //# sourceMappingURL=EmptyView.d.ts.map