import React from 'react'; import type { Colors, CommonComponentProps, ModifierClassProp, Spacing } from '../types'; import type { GetRef } from '../utils/refs'; interface SeparatorProps extends CommonComponentProps, ModifierClassProp { color?: Colors; getRef?: GetRef; height?: number | string; id?: string; size?: Spacing; vertical?: boolean; } export declare function Separator({ _modifierClass, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, color, getRef, height, id, size, vertical, ...rest }: SeparatorProps): React.JSX.Element; export {};