import { AuthenticatedState } from './AuthenticatedState';
declare class IdentityItem {
    id: string;
    authenticatedState: AuthenticatedState;
    primary: boolean;
    constructor(id: string, authenticatedState?: AuthenticatedState, primary?: boolean);
}
export default IdentityItem;
