/// import { TableMode } from '../../../types/index.js'; interface DeviceIconChipProps { geographyVariant?: 'G' | 'L' | 'R'; isTextShown?: boolean; deviceCountry?: string; deviceType?: 'DESKTOP' | 'PHONE' | 'TABLET' | 'TERMINAL'; tableMode?: TableMode; } export declare const DeviceIconChip: ({ geographyVariant, isTextShown, deviceCountry, deviceType, tableMode }: DeviceIconChipProps) => import("react").JSX.Element; export {};