/// import { TextProps } from "react-native/types"; import { TypoOptions } from "../../theme"; import { TextColorOptions } from "../../theme/types"; export interface TypographyProps extends TextProps { typo?: TypoOptions; color?: TextColorOptions; } declare const Typography: ({ typo, color, ...props }: TypographyProps) => import("react").JSX.Element; export default Typography; //# sourceMappingURL=index.d.ts.map