import { HTMLAttributes, ReactNode, CSSProperties, MouseEventHandler } from 'react';
declare const TextType: ["default", "secondary", "success", "warning", "danger"];
type TextTypes = typeof TextType[number];
interface TextProps extends HTMLAttributes {
children?: ReactNode;
className?: string;
style?: CSSProperties;
type?: TextTypes;
disabled?: boolean;
mark?: boolean;
underline?: boolean;
isDelete?: boolean;
strong?: boolean;
italic?: boolean;
onClick?: MouseEventHandler;
}
export { TextProps, TextTypes };