export interface WhatsappCTAUrlButtonCommonProps {
    header?: string;
    body: string;
    footer?: string;
    displayText: string;
}
export interface WhatsappCTAUrlButtonUrlProps extends WhatsappCTAUrlButtonCommonProps {
    url: string;
}
export interface WhatsappCTAUrlButtonWebviewProps extends WhatsappCTAUrlButtonCommonProps {
    webview: any;
    params?: any;
}
export type WhatsappCTAUrlButtonProps = WhatsappCTAUrlButtonUrlProps | WhatsappCTAUrlButtonWebviewProps;
export declare const WhatsappCTAUrlButton: (props: WhatsappCTAUrlButtonProps) => any;
