import { ComponentProps, FC } from 'react'; import { DeepPartial, Orientation } from '../../types/types'; import { DividerTheme } from './theme'; export interface DividerProps extends ComponentProps<"hr"> { theme?: DeepPartial; /** * Either `vertical` or `horizontal`. Defaults to `horizontal`. */ orientation?: Orientation; /** * Whether or not the component is purely decorative. When true, accessibility-related attributes * are updated so that that the rendered element is removed from the accessibility tree. */ decorative?: boolean; } /** * * @name Divider * @description The Divider component is used to separate content within a section or a page, and it is used to create a visual separation between different sections of a page. * @returns React.FC */ export declare const Divider: FC; //# sourceMappingURL=Divider.d.ts.map