export declare type ImportantValue = T & { __important: true; }; export interface ImportantSession { running: boolean; called: boolean; } export declare const startImportantSession: () => void; export declare const finishImportantSession: () => boolean; declare const important: (value: T) => T | ImportantValue; export declare const isImportantValue: (value: any) => value is string | number; export default important;