import type { TOverlay } from "./common"; import type { TBaseStyling } from "./styling"; export interface TWorkspace { id: string; createdAt: Date; updatedAt: Date; name: string; organizationId: string; styling: { allowStyleOverwrite: boolean; brandColor?: string | null; highlightBorderColor?: string | null; }; recontactDays: number; inAppSurveyBranding: boolean; linkSurveyBranding: boolean; config: { channel: "link" | "app" | "website" | null; industry: "eCommerce" | "saas" | "other" | null; }; placement: "topLeft" | "topRight" | "bottomLeft" | "bottomRight"; clickOutsideClose: boolean; overlay: TOverlay; logo?: { url?: string; bgColor?: string; } | null; } export interface TWorkspaceStyling extends TBaseStyling { allowStyleOverwrite: boolean; } //# sourceMappingURL=workspace.d.ts.map