export interface IKey { id: string; label: string; value: string; url: string; } interface ICategory { [category: string]: IKey; } export declare function Key(label: string, url: string): IKey; export declare const CATEGORY: ICategory; export {};