import { HTMLAttributes } from 'react'; export interface SeparatorProps extends HTMLAttributes { orientation?: "horizontal" | "vertical"; } /** * Separator renders a 1px horizontal or vertical divider line. * * Color uses `--color-border-subtle` for a low-contrast visual boundary. * * **Density-aware margin:** Separator does NOT impose its own margin — the * caller controls it. Example: * ```tsx * * ``` * This ensures the margin scales automatically with the active density * (compact / comfortable / spacious) via the `--space-3` token cascade. */ export declare const Separator: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=Separator.d.ts.map