import { EventEmitter } from '../../../stencil-public-runtime';
import { LANGUAGE_TYPES } from "../../../managers/language/constants";
import { Profile } from '../header-types';
export declare class SlProfilePreview {
    /** The info necessary for the profile information slot.*/
    profileInfo: Profile;
    internalLanguage: LANGUAGE_TYPES;
    stopUserSimulation: EventEmitter;
    navigateToMyProfile: EventEmitter;
    navigateToMyList: EventEmitter;
    manageUserProfiles: EventEmitter;
    switchUser: EventEmitter;
    logOut: EventEmitter;
    private renderUserSimulationSection;
    private renderPartnerDelegation;
    render(): any;
}
