import { BlazePlayerType } from '../interfaces';
export interface BlazeFollowEntity {
    id: string;
}
export interface BlazeFollowEntityClickedParams {
    sourceId: string;
    playerType: BlazePlayerType;
    newFollowingState: boolean;
    followEntity: BlazeFollowEntity;
}
export interface BlazeFollowEntitiesDelegate {
    onFollowEntityClicked?: (params: BlazeFollowEntityClickedParams) => void;
}
export declare class BlazeFollowEntitiesDelegateHelper {
    static registerFollowEntitiesDelegate(delegate?: BlazeFollowEntitiesDelegate | null): void;
    private static onFollowEntityClicked;
}
//# sourceMappingURL=follow-entities-delegate.d.ts.map