/// <reference types="react" />
import { FlowBuilderApi } from '../api';
import { ContentFieldsBase } from './content-fields-base';
import { HtWhatsappCTAUrlButtonNode } from './hubtype-fields';
export declare class FlowWhatsappCtaUrlButtonNode extends ContentFieldsBase {
    code: string;
    text: string;
    header?: string;
    footer?: string;
    displayText: string;
    url: string;
    static fromHubtypeCMS(component: HtWhatsappCTAUrlButtonNode, locale: string, cmsApi: FlowBuilderApi): FlowWhatsappCtaUrlButtonNode;
    toBotonic(id: string): JSX.Element;
}
