/**
 * @param {{
 *   textColor: string;
 *   backgroundColor: string;
 *   linkColor: string;
 *   linkColorHover: string;
 *   secondaryColor: string;
 *   secondaryHover: string;
 *   secondaryForegroundColor: string;
 *   fontFamily: string;
 *   fontSize: string;
 *   radius: string;
 * }} options
 */
export function buildStyles({ textColor, backgroundColor, linkColor, linkColorHover, secondaryColor, secondaryHover, secondaryForegroundColor, fontFamily, fontSize, radius, }: {
    textColor: string;
    backgroundColor: string;
    linkColor: string;
    linkColorHover: string;
    secondaryColor: string;
    secondaryHover: string;
    secondaryForegroundColor: string;
    fontFamily: string;
    fontSize: string;
    radius: string;
}): string;
//# sourceMappingURL=buildStyles.d.ts.map