import { CanRegEnumValue, ValueOf } from '../../enum-values'; export declare class InteractionFollowEnumValue extends CanRegEnumValue { static key: string; static types: { user: string; profile: string; }; static desc: { [key in keyof typeof InteractionFollowEnumValue.types]: string; }; static get keys(): string[]; static get data(): { [key in keyof typeof InteractionFollowEnumValue.types]: string; }; } export declare type InteractionFollowType = ValueOf;