import { type CSSProperties } from "react"; import type { FeedbackColorProps, FeedbackTheme } from "../shared/types"; /** * CSS custom properties produced for a feedback board. */ export interface FeedbackCssVariables extends CSSProperties { "--cf-primary"?: string; "--cf-background"?: string; "--cf-surface"?: string; "--cf-input"?: string; "--cf-surface-muted"?: string; "--cf-text"?: string; "--cf-muted"?: string; "--cf-border"?: string; "--cf-danger"?: string; "--cf-success"?: string; "--cf-radius"?: string; "--cf-space"?: string; } export declare function feedbackCssVariables(theme: FeedbackTheme, colors: FeedbackColorProps): FeedbackCssVariables; //# sourceMappingURL=css.d.ts.map