export interface IColorGear { color: string | number; } export declare let isColorGear: (obj: any) => obj is IColorGear;