survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
10 lines (9 loc) • 342 B
TypeScript
import { QuestionAdornerViewModel } from "survey-creator-core";
import * as React from "react";
export interface QuestionWrapperFooterProps {
className?: string;
model: QuestionAdornerViewModel;
}
export declare class QuestionWrapperFooter extends React.Component<QuestionWrapperFooterProps, any> {
render(): React.JSX.Element;
}