import { BoxProps } from 'grommet'; import * as React from 'react'; export interface ClusterProps { cluster?: object; kind?: string; size?: string; } export interface ClusterExtendedProps extends ClusterProps, BoxProps {} declare const Cluster: React.FC; export { Cluster };