import * as React from "react";
declare type StyledTextProps = {
    children: React.ReactNode;
    fontStyle: string;
};
export declare function StyledText({ children }: StyledTextProps): JSX.Element;
declare type LinebreakerProps = {
    children: React.ReactNode;
    fontStyle: string;
    width: number;
};
declare const Linebreaker: React.FC<LinebreakerProps>;
export default Linebreaker;
