import type { ConnectionBase } from "../Common";
export declare type TriggerType = 'connection.trigger';
export interface Trigger extends ConnectionBase {
    type: TriggerType;
}
export declare const isTrigger: import("@altostra/type-validations").ObjectOfTypeValidation<Trigger>;
