import { IconsMap, Localization } from "@files-ui/core"; export type FilesUIConfig = { /** * If true, dark mode colors are used in FileMosaic and FIleCard components. */ darkMode?: boolean; /** * Set of icons to override the existing ones */ icons?: IconsSet; /** * The language in which text labels are shown. * @default "EN-en" */ localization?: Localization; }; export type IconsSet = IconsMap;