import { StyledProps } from '@kuma-ui/system'; declare const defaultTextTag = "p"; type TextSpecificProps = {}; declare const isTextProps: (propName: unknown) => propName is TextSpecificProps; declare const textDefaultProps: StyledProps; declare const textHandler: (props: TextSpecificProps) => {}; export { TextSpecificProps, defaultTextTag, isTextProps, textDefaultProps, textHandler };