import { DividerColor } from '../../tokens/divider-colors/DividerColors'; import { Spacing } from '../../tokens/spacings/Spacings'; import { HTMLAttributes } from 'react'; export interface DividerProps extends Omit, 'children'> { /** Option to render the component as a div. Rendered as a hr by default. */ as?: 'div' | 'hr'; /** If provided, alters the Divider color */ feColor?: DividerColor; /** The amount of space the component should be indented */ feInset?: Spacing; /** The amount of space the component occupies */ feSpacing?: Spacing; /** The axis the component occupies space in */ feVertical?: boolean; } /** * The `` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information.
* It extends the interface of native html `
` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/folder/6196220aa09c0948140d335d) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr) for further information about the element and related attributes. */ declare const Divider: import("react").ForwardRefExoticComponent>; export default Divider;