import { ElementChildren, DividerElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type DividerProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | DividerElement["children"]; data?: DividerElement["data"]; }; export declare function Divider(props: DividerProps): React.JSX.Element;