/// import type { StyleProp, ViewStyle } from "react-native"; import { AncillaryDataProps } from "../types"; export interface IconTextProps extends AncillaryDataProps { contents: any; containerStyle?: StyleProp; link?: string; imageAlignment?: string; tag?: string; verticalAlignment?: string; activeOpacity?: number; } export declare type ArrowTypes = "rightArrow" | "rightBlockArrow" | "rightCategoryArrow"; declare const _default: (props: IconTextProps) => JSX.Element; export default _default;