export { interactionFontRule as fontRule } from "./fontRules"; export function Headline({ children, ...props }: { [x: string]: any; children: any; }): JSX.Element; export function H1({ children, ...props }: { [x: string]: any; children: any; }): JSX.Element; export function H2({ children, ...props }: { [x: string]: any; children: any; }): JSX.Element; export function H3({ children, ...props }: { [x: string]: any; children: any; }): JSX.Element; export function P({ children, ...props }: { [x: string]: any; children: any; }): JSX.Element; export function Emphasis({ children, attributes, ...props }: { [x: string]: any; children: any; attributes: any; }): JSX.Element; export function Cursive({ children, attributes, ...props }: { [x: string]: any; children: any; attributes: any; }): JSX.Element;