import * as react from 'react'; import { HTMLAttributes } from 'react'; type ClusterGap = 'xs' | 'sm' | 'md' | 'lg'; type ClusterAlign = 'start' | 'center' | 'end' | 'stretch'; type ClusterJustify = 'start' | 'center' | 'end' | 'between'; interface ClusterProps extends HTMLAttributes { as?: 'div' | 'nav' | 'header' | 'footer'; gap?: ClusterGap; align?: ClusterAlign; justify?: ClusterJustify; } declare const Cluster: react.ForwardRefExoticComponent>; export { Cluster, type ClusterAlign, type ClusterGap, type ClusterJustify, type ClusterProps };