import { ComponentProps, FC, ReactNode } from 'react'; import { Feedback } from '../Feedback.js'; import { FeedbackOption, FeedbackType } from '../types.js'; type Props = Pick, "addOnQuestion"> & { type: "radio" | "smiley"; label: string; helpLabel?: string; options: FeedbackOption[]; successMessage?: { title: string; children: ReactNode; }; onSubmit: (value: FeedbackType) => void; }; export declare const MainQuestion: FC; export {};