import React from 'react'; import { type FlexAllProps, type DefaultComponentType } from 'reflexy/styled'; export type DividerProps = { readonly light?: boolean | undefined; } & FlexAllProps; export default function Divider({ light, column, ...rest }: DividerProps): React.JSX.Element;