import type { IRGB, IColor } from './interfaces'; /** Converts an RGBA color to a color object (alpha defaults to 100). */ export declare function getColorFromRGBA(rgba: IRGB): IColor;