import * as React from 'react'; declare const TypographyTypes: ["h1_regular", "h2_medium", "h2_regular", "h3_medium", "h3_regular", "h4_medium", "h4_regular", "h4_light", "body_medium", "body_regular", "body_light", "body_link", "body_bold", "capture_regular", "capture_medium", "capture_link", "capture_light"]; export type TypographyType = typeof TypographyTypes[number]; export interface NeoParagraphProps { className?: string; type?: TypographyType; children?: React.ReactNode; style?: any; id?: any; key?: any; copyable?: any; editable?: any; code?: any; delete?: any; disabled?: any; ellipsis?: any; mark?: any; underline?: any; strong?: any; required?: any; } interface CompoundedComponent extends React.ForwardRefExoticComponent> { } declare const NeoParagraph: CompoundedComponent; export default NeoParagraph;