/** * * This error is thrown when a node is not provided with its * required inputs. * */ export declare class InsufficientInputs extends Error { readonly missing: string[]; constructor(missing: string[]); }