import React from 'react'; import { ThemeName } from '../constants/Colors'; export type Props = { themeScheme?: "light" | "dark"; variantColor?: "default" | ThemeName; variant?: "H1" | "H2" | "H3" | "H4" | "H5" | "H6" | "subtitle1" | "subtitle2" | "body1" | "body2" | "button" | "caption" | "overline"; }; declare const Component: React.NamedExoticComponent; export default Component; //# sourceMappingURL=Icon.d.ts.map