import type { FC } from 'react'; import { TdDividerProps } from './type'; import { StyledProps } from '../common'; export interface DividerProps extends TdDividerProps, StyledProps { } declare const Divider: FC; export default Divider;