import type { StyleProp, ViewStyle } from 'react-native'; interface LevelBorderProps { /** Account level shown in the center of the border. */ level?: number | string; /** URL for the account level border art. */ borderIcon?: string; /** Scale applied only to the border art behind the level text. */ borderScale?: number; /** Extra classes merged onto the outer wrapper. */ className?: string; /** Extra inline style for positioning or layout. */ style?: StyleProp; } /** * VALORANT account level badge: border art with the level centered on top. * Consumers provide the already-resolved border asset URL. */ declare function LevelBorder({ level, borderIcon, borderScale, className, style, }: LevelBorderProps): import("react/jsx-runtime").JSX.Element; export { LevelBorder }; export type { LevelBorderProps }; //# sourceMappingURL=level-border.d.ts.map