import type { FunkitTheme } from '../theme/toRestyleTheme'; /** * An 8-digit token in a gradient stop renders opaque black, so the alpha has to * ride on `stop-opacity` and only the solid colour reach the stop. */ export declare const splitColorToken: (token: string) => { solid: string; alpha: number; }; /** One ``, with any alpha moved off the colour. */ export declare const colorStop: (token: string, offset?: number) => string; /** * Repaints a KYC artwork export's two-stop ramp (Fun Mobile V2, 2812:1236): * the host's brand at the top, the text colour at the bottom. The export's own * 5–15% opacity is dropped — it makes the symbol vanish on a dark host. */ export declare function tintKycArtwork(xml: string, theme: FunkitTheme, color?: string): string; //# sourceMappingURL=kycArtwork.d.ts.map