import React from 'react'; import { StyledDividerVariants } from "./style"; import { MestGenericProps } from "../themes"; type Props = MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type DividerProps = Props & NativeAttrs & StyledDividerVariants; declare const Divider: React.FC>; export default Divider;