import React from 'react'; import { MestGenericProps } from "../themes"; import { StyledEllipsisVariants } from "./style"; export type Props = { as?: string | React.ComponentType; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type EllipsisProps = Props & NativeAttrs & StyledEllipsisVariants; declare const _default: React.NamedExoticComponent>; export default _default;