import { HandlerContext, HandlerResult } from "@atomist/automation-client"; import { HandleCommand } from "@atomist/automation-client/lib/HandleCommand"; import * as graphql from "../../../typings/types"; export declare const LifecyclePreferencesName = "lifecycle_preferences"; export declare class ToggleDisplayFormat implements HandleCommand { msgId: string; teamId: string; handle(ctx: HandlerContext): Promise; } export declare function isCompactStyleEnabled(teamId: string, ctx: HandlerContext): Promise<{ preferences: graphql.ChatTeamPreferences.Preferences; enabled: boolean; }>;