UNPKG

survey-react-ui

Version:

A free MIT-licensed React UI component that renders dynamic, interactive JSON-based forms and surveys. You can use it to collect responses from users and send them to your own database.

16 lines (15 loc) 498 B
import { Action, ActionContainer } from "survey-core"; import { SurveyElementBase } from "../../reactquestion_element"; interface IBreadcrumbsProps { model: ActionContainer; css: any; } export declare class SurveyBreadcrumbs extends SurveyElementBase<IBreadcrumbsProps, any> { constructor(props: IBreadcrumbsProps); protected getStateElement(): ActionContainer<Action>; get items(): Action[]; get css(): any; renderElement(): any; renderItems(): any[]; } export {};