import * as React from "react"; import { BaseTextProps } from "./base"; import { fonts, fontSizes, fontWeights } from "./styles"; interface TextProps extends BaseTextProps { theme?: "medium" | "regular" | "light" | "bold"; lang?: "fa" | "en"; weight?: keyof typeof fontWeights | number; color?: string; size?: keyof typeof fontSizes | number; } declare const Text: React.MemoExoticComponent>>; export { Text, fonts }; export type { TextProps }; //# sourceMappingURL=index.d.ts.map