UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

15 lines (14 loc) 566 B
/// <reference types="react" /> import { FlowBuilderApi } from '../api'; import { ContentFieldsBase } from './content-fields-base'; import { FlowButton } from './flow-button'; import { HtCarouselElement } from './hubtype-fields'; export declare class FlowElement extends ContentFieldsBase { title: string; subtitle: string; button: FlowButton | undefined; image: string; hidden: boolean; static fromHubtypeCMS(component: HtCarouselElement, locale: string, cmsApi: FlowBuilderApi): FlowElement; toBotonic(parentId: string): JSX.Element; }