import { NormalTypes } from "../utils/prop-types"; import { GeistUIThemesPalette } from "../themes/presets"; export type SelectColor = { border: string; borderActive: string; iconBorder: string; placeholderColor: string; }; export declare const getColors: (palette: GeistUIThemesPalette, status?: NormalTypes) => SelectColor;