export type PartySwitchItem = {
    id: string;
    name: string;
    productRole?: string;
    logoUrl?: string;
    parentName?: string;
};
export type PartySwitchProps = {
    currentPartyId: string;
    parties: Array<PartySwitchItem>;
    onExit?: (party: PartySwitchItem) => void;
    maxCharactersNumberMultiLineButton?: number;
    maxCharactersNumberMultiLineItem?: number;
};
export declare const PartySwitch: ({ parties, onExit, currentPartyId, maxCharactersNumberMultiLineItem, maxCharactersNumberMultiLineButton, }: PartySwitchProps) => import("react/jsx-runtime").JSX.Element;
