export declare const isHex: (value: string) => boolean; /** * Remove hash (#) sign from hex value * @param hex Hex to check * @returns hex value without # sign */ export declare const removeHashSign: (hex: string) => string;