import type { Rarity } from "../core/types.js"; type InkColor = "white" | "green" | "blue" | "magenta" | "yellow" | "red" | "cyan" | "cyanBright" | "yellowBright" | "redBright" | "gray"; export declare function getBorderColor(rarity: Rarity, selected: boolean, frame: number): InkColor; export declare function useBorderColor(rarity: Rarity, selected: boolean): InkColor; export {};