export type OutboundEffectClassification = { isEdit: boolean; kind: 'message'; } | { kind: 'ask'; } | { kind: 'file'; } | { kind: 'reaction'; }; export declare function classifyOutboundEffect(input: { effect?: string | undefined; tool?: string | undefined; }): OutboundEffectClassification | undefined; //# sourceMappingURL=outbound-effects.d.ts.map