/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Intercom from "../index";
export type ActionComponent = Intercom.ActionComponent.Sheet | Intercom.ActionComponent.Url | Intercom.ActionComponent.Submit;
export declare namespace ActionComponent {
    interface Sheet extends Intercom.SheetActionComponent {
        type: "sheet";
    }
    interface Url extends Intercom.UrlActionComponent {
        type: "url";
    }
    interface Submit extends Intercom.SubmitActionComponent {
        type: "submit";
    }
}
