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 {};
