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