survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
15 lines (14 loc) • 492 B
TypeScript
import * as React from "react";
import { Base } from "survey-core";
import { SearchManager } from "survey-creator-core";
import { SurveyElementBase } from "survey-react-ui";
interface ISearchComponentProps {
model: SearchManager;
}
export declare class SearchComponent extends SurveyElementBase<ISearchComponentProps, any> {
protected get model(): SearchManager;
protected getStateElement(): Base;
constructor(props: any);
renderElement(): React.JSX.Element;
}
export {};