import { Instruction } from '../instruction'; declare type Features = { data: boolean; revivable: boolean; [key: string]: boolean; }; export declare function analyze(instruction: Instruction): Features; export {};