export interface DetectionEntry {
    key: string;
    check: (value: string) => boolean;
    autoDiscoverableByDefault: boolean;
}
export declare const detectionRegistry: DetectionEntry[];
export declare function sanitizeToken(token: string): {
    sanitized: string;
    leadingStripped: number;
};
export declare function detectBestFit(value: string, orderedRendererKeys?: string[], fallbackToAll?: boolean): string | null;
