import { ORIENTATION } from "../../types"; import { BoxProps } from "../Box"; export interface DividerProps extends BoxProps { direction?: ORIENTATION; dashed?: boolean; thick?: boolean; } declare const Divider: { (props: DividerProps): JSX.Element; defaultProps: { dashed: boolean; direction: ORIENTATION; thick: boolean; }; }; export { Divider };