export interface EventParams {
    event: string;
    command: 'deploy' | 'destroy';
    detail: string;
    domain: string;
    options: Record<string, unknown>;
}
export declare function emit(params: EventParams): Promise<void>;
