import { type CSSProperties, type HTMLAttributes, type ReactNode, type Ref } from 'react';
type ClusterProps = {
gap?: string;
justify?: 'start' | 'center' | 'end' | 'between';
align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline';
asChild?: boolean;
className?: string;
style?: CSSProperties;
children?: ReactNode;
ref?: Ref;
} & Omit, 'className' | 'style'>;
declare const Cluster: ({ gap, justify, align, asChild, className, style, children, ref, ...rest }: ClusterProps) => import("react/jsx-runtime").JSX.Element;
export { Cluster };
export type { ClusterProps };