import { BoxProps } from './Box';
import type { ForwardRef } from './types';
export declare type DividerProps = BoxProps;
/**
 * The Divider component reuses styles from `theme.styles.hr` as its default variant.
 */
export declare const Divider: ForwardRef<HTMLDivElement, DividerProps>;
