export declare interface SQNSErrorType { message: string; code: string; detail?: string; } export declare class SQNSError extends Error { code: string; detail?: string; constructor(error: SQNSErrorType); }