import React from 'react';
import { Survey, FeedbackConfig } from '../types';
interface SurveyFormProps {
    survey: Survey;
    onSubmit: (surveyId: number, answers: any[]) => Promise<void>;
    config: FeedbackConfig;
    isLoading?: boolean;
}
export declare const SurveyForm: React.FC<SurveyFormProps>;
export default SurveyForm;
//# sourceMappingURL=SurveyForm.d.ts.map