export interface StickerItem { id: string | number; title: string; thumbnail: string; downloadUrl: string; } export interface StickersTheme { primaryColor?: string; primaryHoverColor?: string; textColor?: string; backgroundColor?: string; cardBackground?: string; buttonColor?: string; buttonTextColor?: string; neutralMid?: string; cardBorderColor?: string; titleAccentColor?: string; titleDarkColor?: string; } export interface StickersStep { title: string; description: string; } export interface StickersTexts { title?: string; subtitle?: string; loading?: string; noItems?: string; loadMore?: string; downloadButton?: string; howItWorksTitle?: string; steps?: StickersStep[]; } export interface StickersConfig { apiUrl: string; tags?: string[]; preset?: string; locale?: string; website_id?: string; initialCount?: number; loadMoreCount?: number; } export interface StickersProps { config: StickersConfig; theme?: StickersTheme; texts?: StickersTexts; downloadProxyUrl?: string; onDownload?: (sticker: StickerItem) => void; } export declare function Stickers({ config, theme: themeP, texts: textsP, downloadProxyUrl, onDownload }: StickersProps): import("react/jsx-runtime").JSX.Element; export interface StickersForYouCardProps { title: string; description: string; ctaText: string; ctaHref: string; desktopImage: string; mobileImage?: string; imageAlt?: string; imageOnRight?: boolean; titleColor?: string; descriptionColor?: string; ctaColor?: string; ctaHoverColor?: string; backgroundColor?: string; paddingClass?: string; } export declare function StickersForYouCard({ title, description, ctaText, ctaHref, desktopImage, mobileImage, imageAlt, imageOnRight, titleColor, descriptionColor, ctaColor, ctaHoverColor, backgroundColor, paddingClass, }: StickersForYouCardProps): import("react/jsx-runtime").JSX.Element; export default Stickers; //# sourceMappingURL=Stickers.d.ts.map