import type { CSSProperties } from 'preact'; import type { AnnotationLayout } from '../embeds/cta/domain/layouts.ts'; import type { AnnotationsPlacement } from '../embeds/cta/domain/attributes.ts'; import type { Gradient } from './gradient.ts'; export type WistiaCTAEnrichmentOptions = { backgroundColor: string; backgroundWidth?: CSSProperties['backgroundWidth']; embedHost?: string; fontFamily?: string; fontSize?: number; gradient?: Gradient; layout: AnnotationLayout; linkUrl: string; mediaHashedId?: string; placement?: AnnotationsPlacement; playerDomId?: string; roundedCorners?: number; text: string; textLineThree?: string; textLineTwo?: string; thumbnailUrl?: string; }; //# sourceMappingURL=cta.d.ts.map