import { SxProps } from "@mui/material";
export type PartyAccount = {
    image: string | undefined;
    name: string;
    role?: string | undefined;
    parentName?: string;
};
export interface PartyAccountItemProps {
    image?: string;
    partyName: string;
    partyRole?: string;
    noWrap?: boolean;
    containerSx?: SxProps;
    infoContainerSx?: SxProps;
    maxCharactersNumberMultiLine?: number;
    parentPartyName?: string;
}
export declare const PartyAccountItem: ({ partyName, parentPartyName, partyRole, image, noWrap, containerSx, infoContainerSx, maxCharactersNumberMultiLine, }: PartyAccountItemProps) => import("react/jsx-runtime").JSX.Element;
