import type { BotonicContext } from '@botonic/core';
import type { BotonicCarouselElement } from '@botonic/shared';
import type { FlowBuilderApi } from '../api';
import { ContentFieldsBase } from './content-fields-base';
import { FlowButton } from './flow-button';
import type { 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;
    trackFlow(botonicContext: BotonicContext): Promise<void>;
    processContent(botonicContext: BotonicContext): Promise<void>;
    addElementToBotonic(botonicContext?: BotonicContext): BotonicCarouselElement;
}
