import { ContainerParameters } from '@/components/canvas/Container/parameters'; import { ComponentProps } from '@/types/cskTypes'; export enum TestimonialVariants { WithLargeAvatar = 'withLargeAvatar', WithOverlappingImage = 'withOverlappingImage', } export type TestimonialParameters = ContainerParameters; export enum TestimonialSlots { TestimonialSecondaryImage = 'testimonialSecondaryImage', TestimonialContent = 'testimonialContent', TestimonialPrimaryImage = 'testimonialPrimaryImage', TestimonialAuthor = 'testimonialAuthor', } export type TestimonialProps = ComponentProps; export { default } from './testimonial'; export { TestimonialEmptyPlaceholder } from './empty-placeholder';