import * as React from 'react'; import { View, type ImageStyle, type StyleProp } from 'react-native'; type RankPyramidBorderImageProps = React.ComponentProps & { /** Season border display icon URL. */ borderIcon?: string; /** Square artwork box size in px. */ size?: number; /** Draw the inner triangle grid on top of the border image. */ showTriangles?: boolean; /** Number of triangle rows. */ triangleRows?: number; /** Fill color for the triangle grid. Defaults to the card token. */ triangleFillColor?: string; /** Optional tint override. Defaults to the muted-foreground token. */ tintColor?: string; /** Extra style merged onto the border image. */ imageStyle?: StyleProp; }; declare function RankPyramidBorderImage({ borderIcon, size, showTriangles, triangleRows, triangleFillColor, tintColor, imageStyle, className, style, ...props }: RankPyramidBorderImageProps): import("react/jsx-runtime").JSX.Element; export { RankPyramidBorderImage }; export type { RankPyramidBorderImageProps }; //# sourceMappingURL=rank-pyramid-border-image.d.ts.map