export declare type Dictionary = Record; export declare type StrictNullable = T | null; export declare type Nullable = StrictNullable | undefined; export declare type IsInstalled = (id: string) => boolean;