import * as React from 'react';

type SpaceToken = '1' | '2' | '3' | '4' | '5' | '6' | '8' | '10' | '12';
type Align = 'start' | 'center' | 'end';
type Justify = 'start' | 'center' | 'end' | 'between';
interface ClusterProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'style'> {
    asChild?: boolean;
    gap?: SpaceToken;
    align?: Align;
    justify?: Justify;
    style?: React.CSSProperties;
}
declare const Cluster: React.ForwardRefExoticComponent<ClusterProps & React.RefAttributes<HTMLDivElement>>;

export { Cluster, type ClusterProps };
