import type { SlackAPIResponse } from "../response";
export type TeamInfoResponse = SlackAPIResponse & {
    error?: string;
    needed?: string;
    ok: boolean;
    provided?: string;
    team?: Team;
};
export interface Team {
    avatar_base_url?: string;
    discoverable?: string;
    domain?: string;
    email_domain?: string;
    enterprise_domain?: string;
    enterprise_id?: string;
    enterprise_name?: string;
    icon?: Icon;
    id?: string;
    is_sfdc_auto_slack?: boolean;
    is_verified?: boolean;
    lob_sales_home_enabled?: boolean;
    locale?: string;
    name?: string;
    pay_prod_cur?: string;
    sso_provider?: SsoProvider;
    url?: string;
}
export interface Icon {
    image_102?: string;
    image_132?: string;
    image_230?: string;
    image_34?: string;
    image_44?: string;
    image_68?: string;
    image_88?: string;
    image_default?: boolean;
    image_original?: string;
}
export interface SsoProvider {
    label?: string;
    name?: string;
    type?: string;
}
//# sourceMappingURL=TeamInfoResponse.d.ts.map