export declare type Error = { type: string; message?: string; stackTrace?: string[]; code?: number; internal?: boolean; }; export default Error;