interface FormattedError {
    type: string;
    message: string;
    stack?: string;
    name?: string;
}

export type { FormattedError };
