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