import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface DividerProps { children: ReactNode; className?: string | null; } /** * The `` component is a wrapper that adds a top border * and spacing to divide sections of content. It can a also be * used without children `` to provide a horizontal * rule with correct spacing. */ export declare const Divider: MdxComponent; export {};