import { Json } from './types'; export declare const arrayToOptions: (array: string[]) => { id: string; text: string; value: string; iconName: string; }[]; type Item = Json & { tags: string[]; }; type Items = Record; export declare const itemsTagsToOptions: (arrayOrObject: Item[] | Items) => { id: string; text: string; }[]; type Minutes = { today: number; week: number; month: number; year: number; }; export declare const optionsPeriod: (minutes: Minutes, includeLastHour?: boolean) => { id: string; text: string; max: number; }[]; export {};