/**
 * A single organization / team entry, used to populate the "Selected Teams" picker
 * in the comment visibility banner.
 *
 * Provided by the customer via `contactElement.updateOrgList({ orgList: [...] })`.
 */
export declare class OrgContact {
    /**
     * Unique organization identifier that you use to identify the team / organization.
     */
    id: string;
    /**
     * The team / organization's display name (shown in the "Selected Teams" picker).
     */
    name?: string;
}
/**
 * Config accepted by `updateOrgList`.
 */
export interface UpdateOrgListConfig {
    /**
     * The list of organizations / teams to offer in the "Selected Teams" picker.
     */
    orgList: OrgContact[];
}
