import * as React from 'react';

type SpaceToken = '1' | '2' | '3' | '4' | '5' | '6' | '8' | '10' | '12';
type Orientation = 'horizontal' | 'vertical';
interface DividerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'style'> {
    asChild?: boolean;
    gap?: SpaceToken;
    orientation?: Orientation;
    style?: React.CSSProperties;
}
declare const Divider: React.ForwardRefExoticComponent<DividerProps & React.RefAttributes<HTMLDivElement>>;

export { Divider, type DividerProps };
