import React from "react";
type TextAlign = "center" | "left" | "right";
export interface StrokeTextProps {
    width?: number;
    text: string;
    fontSize?: number;
    color?: string;
    strokeColor?: string;
    strokeWidth?: number;
    fontFamily?: string;
    align?: TextAlign;
    numberOfLines?: number;
    ellipsis?: boolean;
}
export declare const StrokeText: (props: StrokeTextProps) => React.JSX.Element;
export {};
