import { ReactNode } from "react"; import { RatingProps } from "@components/Rating/Rating.interface"; import { TComponentIcon } from "@helpers/types"; export interface ListProps { list?: { label: string; text: string; }[]; } export interface DescriptionProps { heading?: string; description?: string; } export interface ReviewProps extends ListProps, DescriptionProps, Pick { align?: "left" | "center"; style?: "outlined" | "shadow"; ratingSize?: "sm" | "md"; ratingIcon?: TComponentIcon; reviewHeader: ReactNode; }