import React from 'react'; import type { CSSProperties, ReactNode } from 'react'; import type { DefaultProps } from '../../types'; export interface LineProps extends DefaultProps { primary?: boolean; width?: string; variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'subtitle1' | 'subtitle2' | 'body1' | 'body2' | 'caption' | 'button' | 'overline'; childrenStyle?: CSSProperties; children?: ReactNode; 'data-testid'?: string; } declare const Chapter: ({ padding, margin, style, childrenStyle, children, variant, primary, ...otherProps }: LineProps) => React.JSX.Element; export default Chapter;