import React from "react"; type DividerProps = { thickness?: number; color?: string; direction?: "horizontal" | "vertical"; length?: number | string; }; export declare const Divider: React.FC; export {};