export interface TeamConfig {
    hasTeamSpace: boolean;
    teamSpaceId?: string;
    teamId?: string;
    teamName?: string;
}
export declare function getTeamConfiguration(): Promise<TeamConfig | null>;
export declare function getBusinessUserId(): Promise<string | null>;
export declare function getCachedTeamConfig(): Promise<TeamConfig | null>;
export declare function getCachedBusinessUserId(): Promise<string | null>;
export declare function shouldUseTeamSpace(path: string, teamConfig?: TeamConfig | null): boolean;
