import { LabelHTMLAttributes } from 'react';
export interface StyledProps {
themeFontSize: 10 | 12 | 14 | 16;
themeFontWeight: 'light' | 'regular' | 'semi-bold' | 'bold';
themeIntent: 'main' | 'body' | 'subdued' | 'primary' | 'success' | 'danger' | 'warning' | 'error' | 'white';
}
declare const StyledParagraphBlock: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, StyledProps, never>;
declare const StyledDivBlock: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledProps, never>;
declare const StyledSpanInline: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, StyledProps, never>;
declare const StyledLabelInline: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, StyledProps & LabelHTMLAttributes, never>;
export { StyledParagraphBlock, StyledDivBlock, StyledSpanInline, StyledLabelInline, };