export interface ParticipantTileActionsMenuProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * User Object
     * @default null
     */
    participant?: any;
    /**
     * Handle remove user
     */
    onRemoveParticipant?: (p: any) => void;
    /**
     * Handle ban user
     */
    onBanParticipant?: (p: any) => void;
    /**
     * Props to spread to popper
     * @default empty object
     */
    PopperProps?: any;
    /**
     * Any other properties
     */
    [p: string]: any;
}
export default function ContributionActionsMenu(props: ParticipantTileActionsMenuProps): JSX.Element;
