export { ARFilters } from './ARFilters'; export type { DeepARFilter, DeepARTexts, DeepARProps } from './types'; export { DEFAULT_EFFECTS, ICONS } from './constants'; export { getARFiltersTexts } from './translations'; import React from 'react'; export interface ARFiltersForYouCardProps { 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 ARFiltersForYouCard({ title, description, ctaText, ctaHref, desktopImage, mobileImage, imageAlt, imageOnRight, titleColor, descriptionColor, ctaColor, ctaHoverColor, backgroundColor, paddingClass, }: ARFiltersForYouCardProps): React.DetailedReactHTMLElement<{ className: string; style: { backgroundColor: string; }; }, HTMLElement>; //# sourceMappingURL=index.d.ts.map