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