import { Theme } from '@tracktor/design-system'; export declare const variantMarkerColor: { readonly default: "#009ba6"; readonly primary: "#3F83F8"; readonly secondary: "#9C27B0"; readonly success: "#4CAF50"; readonly warning: "#FF9800"; }; export type VariantMarker = keyof typeof variantMarkerColor; type ThemeColorPath = `${keyof Theme["palette"]}.${string}`; type ThemeColor = string | ((theme: Theme) => string) | ThemeColorPath; interface MarkerProps { variant?: string | keyof typeof variantMarkerColor; color?: ThemeColor; size?: number; type?: string; } declare const Markers: ({ color, variant, type, size }: MarkerProps) => import("react/jsx-runtime").JSX.Element; export default Markers;