import { FC } from 'react'; export interface DividerProps { variant?: 'dashed' | 'solid'; } declare const Divider: FC; export default Divider;