export declare type ConfirmationType = 'error' | 'warning' | 'info' | 'success'; export interface Interaction { tag?: string; url?: string; classifiers?: string; headerIcon?: string; parentClassifiers?: string; parentSettings?: any; } export declare const getViewOptions: (id: string) => Interaction; export declare const registerView: (id: string, interaction: Interaction) => Interaction; export declare const unregisterView: (id: string) => Interaction;