interface LessShittyError { message: string; } declare const makeErrorLessShitty: ({ error }: { error: TError; }) => TError; export type { LessShittyError }; export { makeErrorLessShitty };