export declare type ActivationContext = { /** * A unique identifier for the user. Used to determine bucketing */ uuid?: string; /** * Toggle overrides */ forcedToggles?: Record; /** * Key-value pairs of attributes to compare against the toggle attributes when determining activation */ attributes?: Record; }; export declare type ToguruToggleData = { id: string; tags: Record; activations: Array<{ attributes?: Record; rollout?: { percentage: number; }; }>; }; export declare type ToguruData = { sequenceNo: number; toggles: ToguruToggleData[]; };